Hi, SQL column order should never be assumed, there is no way to order columns and it could even possibly vary query by query (in practice it doesn't). This isn't a Flex issue but a general database issue.
You might be able to select the columns in order by specifying them in the select statement in the order you want rather that a select * but it would be best to change to code to not rely on the order of the columns. Justin
