Of course. Make sure all your tables have a primary key and then you create scripts that extracts the SQLite data differentially (no need to transfer stuff that is already on the server). SQLite is all strings, so you encode each row into a string (say, Base64) and then decode it back on the server and run the insert there.
On Mar 11, 12:20 am, Rohith Nandakumar <[email protected]> wrote: > Hello, I have an existing desktop application in vb that is using .mdb file > as database. > > I have created an android app to use some of the features of the app. Since > android doesn't support mdb, I've converted the important tables to sqlite > database. I wish to transfer the data in the sqlite db to the the desktop > application when I connect my phone. So basically I want to transfer the > sqlite db to mdb format. Is there any way to do this? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

