This is how the ArrayCollection gets populated:
sqlFile = File.applicationStorageDirectory.resolvePath("myDB.db"); sqlConn = new SQLConnection(); sqlConn.open(sqlFile); stmt.sqlConnection = sqlConn; stmt.text = "SELECT * FROM main"; stmt.execute(); var result:SQLResult = stmt.getResult(); mainArrayCollection.source = result.data; sqlConn.close(); Since I don't ever actually handle the objects or assign any datatypes is why I am confused on how to use such a bindable class. -- View this message in context: http://apache-flex-users.2333346.n4.nabble.com/Workers-and-Speed-tp13098p13142.html Sent from the Apache Flex Users mailing list archive at Nabble.com.