Android Question SQL Lite Remote Database????

stephankuba

Member
Licensed User
Longtime User
Hi,

i want to connect to a sql lite database on my server. I want to receive data and change data.
I have read a lot tutorials in this forum, but there are so many, i tried some but nothing works.

Phone <---> Database on Server

please some examples...
 

stephankuba

Member
Licensed User
Longtime User
thank you for fast answer, i read sql lite is not for multi user only for single connection, is this right?
So I think sql lite is not the right for me.
A lot of user should connet to the database and work on it.

Maybe you have an idea how to do this?
 
Upvote 0

stephankuba

Member
Licensed User
Longtime User
Thank you for all your posts. But I don't realy understand this tutorial. I just want to put data in a sqllite file on the server and get data from the sqllite file.
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
then you have to understand the working of an RDC. With the RDC you can do what you want but not directly...
To get data from the db you have to call the RDC-Bridge on your server which gets the desired data and post them back to your app as json-array.
To write data to the db you have to send the data to yxour RDC-Bridge which then writes the data to the db and send back an result to your app (wheter the data are successfully written or not).

RDC IS the right one for you.
 
Upvote 0

stephankuba

Member
Licensed User
Longtime User
thank you for help. I give it up it's to difficult. I don't realy understand this. I think I make a php site which connects to the database plus html5 and css web app.
 
Upvote 0
Top