I'm basically trying to get it to list out for me all the information that is in the database, without knowing ahead of time what tables, columns, and rows are actually in the db.

It seems like this should work because in the documentation ( http://livedocs.adobe.com/flex/3/lan...taManipulation) it says,
"If a result expression is * then all columns of all tables are substituted for that one expression. "

If I select a SPECIFIC table it works..
Code:
var Table="Table1";
var Columns="*";
myStatement.text = "SELECT "+Columns+" FROM "+Table;
but when I try to select ALL tables like this..
Code:
var Table="*";
var Columns="*";
myStatement.text = "SELECT "+Columns+" FROM "+Table;
I get this error message..
SQLError: 'Error #3115: SQL Error.', details:'near '*': syntax error', operation:'execute', detailID:'2003'

Anyone have an idea what is wrong with my syntax? This seems like exactly what it is telling me to do?

Thanks!