Android Question Upload recrods from SQLite to MySQL

vdudukov

Member
Licensed User
Longtime User
Hello everyone.

I am trying to sync my internal SQLite database with my MySQL database.
I can download all records into SQLite from MySQL based on web, but i dont know how to upload all my records from SQLite to MySQL. I saw many posts here, but nothing about this.

Anyway Is it possible ?

Example:

I use httpjob to insert one record into MySQL.

insert.download2("http://servername/server.php", Array As String ("action", "insert", "name", name.text, "lastname", lastname.text, "age", age.text))




Thanks.
 
Last edited:
Top