1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| <?xml version="1.0" encoding="utf-8"?>
<mx:Application
xmlns:mx="http://www.adobe.com/2006/mxml"
xmlns:assql="com.maclema.mysql.mxml.*"
layout="vertical">
<mx:Script>
<![CDATA[
import com.maclema.util.ResultsUtil;
private function handleConnected(e:Event):void {
service.send("SELECT id,name,pict_url FROM sources ORDER BY name ASC");
}
]]>
</mx:Script>
<assql:MySqlService id="service"
hostname="localhost"
username="root"
password=""
database="pesee"
charSet="utf-8"
autoConnect="true"
connect="handleConnected(event)" />
</mx:Application> |
Partager