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.
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.
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.
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).
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.
SQLite allows multiple connections but does not allow concurrent writings. So the writings can be slow if too many people try to modify the same database at the same time.