Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
So how di I manage a Android database which isn't even located in the assets folder. I followed this tutorial, and it's great, but what if I want to delete and add information to tables manually?
http://www.java2s.com/Code/Android/Database/Createdeleteupdate.htm
You can use other software to modify you Database simply by opening the assets file with that software.
Here is SQLite Expert that is recommended for modifying your Database
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
There are 2 projects, one project is about a restaurant internal order management and the other is a food platform with multiple restaurants.
I want write into the database of the restaurant from the food ordering app without connecting my app to the restaurant project.
I can't seem to find a way to do this automatically without connecting them. a workaround could be to export the data and reimport it into the other project. in theory, you could even make a script do this for you.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
Wich software should I use to create databases to be used in an Android application? I never had any experience with it and have no idea where to start.
Just addthe db file to your assets. Then copy it from assets to internal storage on startup if it doesn't exist yet. Use a script on your PC to build the db file (sqlite runs on PCs as well).
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I am using Android firebase for the first time so please let me know can I upload CSV files from my mobile to firebase? if yes then how ?
You totally can. You can use Firebase Storage to store your files - csv, images, videos, etc.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
There are two app
1) database app
2) contact app
I want to use database of database app in contact app.how will it be done.
I would suggest to use a content provider. Take a look here:
http://developer.android.com/guide/topics/providers/content-providers.html
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I have a database format JSON (for example, data.json), it is possible to add this file in the application and use as a local database? When developing an application to add the file, and when removing applications from your device, removing it along with the application.
You can create a folder named "raw" in /res/ and then you can access it at R.raw.data.
Pretty sure since it's within the context of your app, if the app is removed the data is as well.