Hi, > I don't know if there is a way to download smaller section of the database at > a time and add it all together.
Do you need all of the data at once? If not then one solution is that you can page the data and download only what the user need and a little either side of that so that it’s responsive. AMF supports this [1]. If you do need all the dat at once, do you need all of the columns? Try to cut down on the columns and/or break up the query to return X rows at a time and make multiple requests. In mySQL you can do this with LIMIT n,n at the end of the SQL. Thanks, Justin 1. http://www.adobe.com/devnet/flash-builder/articles/flashbuilder_datapaging_php.html