I'm trying to find a way to backup Sqlite database from my android app to a cloud Windows Azure. I have just implemented the method that copy the sqlite database in a folder of external sd card, now I would backup this file to a cloud.
I have seen this official guide:
https://azure.microsoft.com/it-it/documentation/articles/mobile-services-android-get-started/
but I don't understand if it is possible. Have you a guide or a faq?
Thanks :)
One option is to send your file to Azure blob storage: http://azure.microsoft.com/en-us/services/storage/blobs/
There's an Android SDK available: https://github.com/Azure/azure-storage-android/
Related
I have created an application in Android studio which store users information and other data in sqlite database. I want to give user an option to create the backup of their data(upload the database.db file) on Google Drive and restore (download the database.db file) from Google Drive.
here is a perfect example for what you need. Go through the project and you will be able to do backup/restore of your db.
I got a problem. I have to develop an iOS application that access to a simple xml online database and that store those data in a local storage remaining synchronized with it. I have a Parse account if that can help. (The application should work on Android too, so an universal solution would be great).
In simple terms, the user doesn't access the network sometimes, so I have to keep a local copy of the database that is online and, whenever it access the network, I have to check the version of the database online, and if newer download it and update the local copy. Which kind of local storage should I use? Which kind of online storage should I use? (Xml was just an idea) Can I use parse for this? Is there an online storage suitable for android too?
Thank you!
We are using sqlite android and ios. Using sql from server side. Webservice for connection.
I have integrated SQLdroid (sqldroid.org) into my project. I am connecting locally with my SQLite database in Android. Is there any way how to connect to online SQLite database file?
Thanks
SQLDroid is not the path because it's designed only to access the built-in SQLite database, in fact it uses the standard Android SQLite API
I just installed Dungeons sample code in my phone. I am using adb tool for viewing messages in my computer via "usb debugging" but I also want to see the contents of the SQLite tables.
I cannot see in the doumentation how I can access these tables? Maybe they are in the directory that the app wan installed? But what is this default directory?
I found that I can use sqlite3 tool from adb (http://developer.android.com/guide/developing/tools/adb.html#sqlite) but I cannot find the corresponding DB inside the android.
Plz help, thank you
sqlite database are stored on a per application basis. They're ususally stored in /data/data/your.package.name/databases.
Is there a better way in which android database from sd card of my android phone can be transferred to a web application using visual basic?
This Firefox addon can be of use.
You need to extract the schema for your database for your new. Bear in mind that SQL syntax for SQLite is different from MySQL... (I assumed you need to transfer your android db to MySQL web db)
Read this tutorial