| 1 |
<?xml version="1.0" encoding="utf-8"?> |
|---|
| 2 |
<mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" applicationComplete="init()"> |
|---|
| 3 |
<mx:Script source="SQLiteViewer.as"/> |
|---|
| 4 |
<mx:Label id="_label1" x="20" y="22" width="66" height="22" text="DataBase:"/> |
|---|
| 5 |
<mx:TextInput id="tDBFilename" x="85" y="20" width="399" height="22" text=""/> |
|---|
| 6 |
<mx:Button id="bDBOpen" x="499" y="20" width="60" height="22" label="Open" click="bDBOpen_click(event)"/> |
|---|
| 7 |
<mx:List id="lTableList" x="20" y="80" width="250" height="185" dataProvider="{lTableList_data}" change="lTableList_change(event)"/> |
|---|
| 8 |
<mx:Label id="_label6" x="20" y="57" width="80" height="22" text="Table List:"/> |
|---|
| 9 |
<mx:Label id="_label8" x="20" y="286" width="38" height="22" text="SQL:"/> |
|---|
| 10 |
<mx:TextInput id="tSQLStatement" x="54" y="284" width="654" height="22" text=""/> |
|---|
| 11 |
<mx:Button id="bSQLExec" x="719" y="283" width="60" height="22" label="Exec" click="bSQLExec_click(event)"/> |
|---|
| 12 |
</mx:WindowedApplication> |
|---|