Click here to Skip to main content
16,004,458 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello friends
i want to store data on google drive to access via mobile app. for this which database or file format to use
Thanks in advance

Pradeep

What I have tried:

I tried using data in XML format
Posted
Updated 7-May-22 6:47am

XML is not a database. It's just a markup language to format data for storage and interchange between applications.

You can store your data in Google Drive, but you cannot access it using database providers, like ADO.NET, SQL Server, MySql, ... You're clients would have to download the file, and use it locally. This will also prevent you from sharing data between users! If you try to put a modified file back on Google Drive, you will overwrite any existing data there!

If you really need to share data between users, you would have to go with a cloud-based database and API solution.
 
Share this answer
 
Comments
0x01AA 7-May-22 13:12pm    
XML is a markup language? 3.
Dave Kreskowiak 7-May-22 13:14pm    
What else would you call "Extensible Markup Language"?
0x01AA 8-May-22 4:54am    
Sorry, I don't know where my brain was. 5
You can use any format that you wish, although you have not explained what data you wish to save. The only issue is whether you have access to the files from your mobile device.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900