I want to know is it possible to directly save the sqlite database on the server.
if yes,How can I do this Please Help.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
SQLite databases on android are private to the device. You can not choose their location either. They will always be stored in a directory under
/data/dataon your device. You can, however, copy it between locations as shown here.Also, as SQLite is a “serverless” database, there’s now way of using any “remote database”.