我省略了与前例类似的部分代码,以缩短代码段长度。差别重点在于
该方法最有价值的部分如下:
myservice.lastResult..database.* |
看看这个语句。如果之前不了解E4X的作用,我可以稍加解释。myservice.lastResult变量实际上是一个XML文档。‘..’句法等价于XPath ‘//’句法。它表示“将具有此名字的任何一个标签给我”,在本例中就是“将任何一个数据库标签给我”。星号表示数据库标签的任何子标签。由于数据库标签只有一个子标签,即数据库名称的文字部分,因此这段代码就表示“将XML文档中每个数据库的名称给我”。这个功能真的很好用!
正是由于ActionScript的这种E4X扩展,Flex才能够方便地与XML数据源进行通讯。据我所知,还没有其他语言能够如此方便地查询XML文档。因此利用强大的E4X,就可以在浏览器中运行该应用程序,并得到如图2所示的结果。
![]() |
图2:填充数据库名称的数据库组合框 |
单击该组合框时,将弹出下拉列表,并显示机器中的数据库列表。是的,其中有很多数据库。几乎每篇有关PHP、Flex、Rails或其他技术的文章都会用到数据库,所以我拥有大量的数据库。
创建表视图代码
创建示例Flex应用程序的最后一步就是添加表格的下拉菜单,并在数据网格中显示选中表格的数据。该例的完整代码如清单4所示。
清单4:flexmysql.mxml
<p><?xml version="1.0" encoding="utf-8"?><br><application xmlns:mx="<FONT color=#333333 size=3>http://www.adobe.com/2006/mxml</FONT>" layout="vertical">initialize="onInitialize()"><br><script><br>import mx.collections.ArrayCollection;<br>private static const SERVICE_BASE:String = "<font color="#333333" size="3">http://localhost/sql/req.php</font>";<br>private var loadingDatabases:Boolean = true;<br>private var loadingTables:Boolean = false;<br>public function onInitialize():void<br>{<br>loadingDatabases = true;<br>myservice.url = SERVICE_BASE;<br>myservice.send( null );<br>} public function onResult(event:Event):void<br>{<br>if ( loadingDatabases )<br>{<br>loadingDatabases = false;<br>selectedDatabase.dataProvider = myservice.lastResult..database.*;<br>onSelectDatabase();<br>}<br>else if ( loadingTables )<br>{<br>loadingTables = false;<br>var tables:Array = new Array();<br>for each ( var tablRecord:XML in myservice.lastResult..record )<br>{<br>for each( var tablCol:XML in tablRecord.* )<br>tables.push( tablCol..*.toString() );<br>}<br>selectedTable.dataProvider = tables;<br>onSelectTable();<br>} else<br>{<br>var records:Array = new Array();<br>for each ( var record:XML in myservice.lastResult..record )<br>{<br>var outRecord:Array = new Array();<br>for each( var column:XML in record.* )<br>outRecord[ column.name() ] = column..*.toString();<br>records.push( outRecord );<br>}<br>var data:ArrayCollection = new ArrayCollection( records );<br>dg1.dataProvider = data;<br>}<br>} public function onSelectDatabase():void<br>{<br>loadingDatabases = false;<br>loadingTables = true;<br>var <font color="#333333" size="3">url:String</font> = SERVICE_BASE;<br>url += "?mode=getTables&db="+selectedDatabase.selectedLabel;<br>myservice.url = url;<br>myservice.send(null);<br>} public function onSelectTable():void<br>{<br>var <font color="#333333" size="3">url:String</font> = SERVICE_BASE;<br>url += "?mode=getData&db="+selectedDatabase.selectedLabel;<br>url += "&table="+selectedTable.selectedLabel;<br>myservice.url = url;<br>myservice.send(null);<br>}<br>]]><br></script><br><httpservice id="myservice" result="onResult(event)" resultformat="e4x"><br></httpservice><br><vbox horizontalalign="left"><br><hbox><br><label text="Database:"></label><br><combobox id="selectedDatabase" width="381" height="21">change="onSelectDatabase()"><br></combobox><br></hbox><br><hbox><br><label text="Table:"></label><br><combobox id="selectedTable" width="381" height="21">change="onSelectTable()"><br></combobox><br></hbox><br><datagrid id="dg1" width="452"><br></datagrid><br></vbox><br></application></p> |
其中有一处重要修改,即添加了onSelectDatabase()函数的代码,以获取表格列表,然后将其输入到onResult()函数中,还添加了onSelectTable()函数,该函数可检索表格中的数据,并在onResult()处理器中设置数据网格

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

Article discusses strategies for handling large datasets in MySQL, including partitioning, sharding, indexing, and query optimization.

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

The article discusses dropping tables in MySQL using the DROP TABLE statement, emphasizing precautions and risks. It highlights that the action is irreversible without backups, detailing recovery methods and potential production environment hazards.

Article discusses using foreign keys to represent relationships in databases, focusing on best practices, data integrity, and common pitfalls to avoid.

Article discusses securing MySQL against SQL injection and brute-force attacks using prepared statements, input validation, and strong password policies.(159 characters)

The article discusses creating indexes on JSON columns in various databases like PostgreSQL, MySQL, and MongoDB to enhance query performance. It explains the syntax and benefits of indexing specific JSON paths, and lists supported database systems.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1
Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
