List of tables from a Sqlite database

At this time this is my shortest code to achieve that (with Flex 3):
connection:SQLConnectionNote: this article will be updated
connection = new SQLConnection()
connection.open(new File('d:/database.db'))
connection.loadSchema()
var db:SQLSchemaResult
db = connection.getSchemaResult();
listTables.dataProvider = db.tables
Where listTables is a mx.List control
which have labelField="name"
