Hi, If you were asking whether there is a way to perform file import directly into the database via the API, the answer would be no. But you can perform the data loading utilizing the transactions feature of the Database API. More details can be found in this FAQ entry -
http://code.google.com/apis/gears/gears_faq.html#bestPracticeDB Essentially, you will be using a worker pool to open database connection and create a transaction of all your DB entries. This way the user experience won't be impacted as you are loading in large amount of data. Cheers, Austin On Oct 17, 6:26 pm, Murali <[EMAIL PROTECTED]> wrote: > For the first time users clicks on synchronize, I have to load large > volume of records to a local database table. > > can you pls suggest me some approaches? > > 1] Downloadina large file and then creating a program to reas that > file and load to database table > OR > 2] is there a way to dowload the data directly from server to local > database tables > > 3] Any other best way > > Pls let me know
