how to export database in android application - android

I have created a database android application it works correctly on emulator , but when Iam transferring it to my device it says that the table is not exist ,I have used 'openOrCreateDatabase() ' method , the database doesnt come with apk file ,when I run the ap, my database is read only, means I already have a lot of data in it and only need to see them

Things in your apk file such as assets are read only so you can't use it as a live database. If you have data already in sqlite database, you will have to copy the data into the live database. If on the other hand you have it in some other format such as csv, you will have to create a reader which will add it into your live database.

Related

Change or reset prepackaged database in DBFlow

I am a beginner in android programming, I created an android app which uses an exist DB with DBFlow. At first time I inserted a temp data to database so I can test the app. When I finished building the app I inserted real data and copied the new database -which is similar to the old one except for the real data- to assets folder but I did not find the new data.
How can I reset the database or change the data.
After changing database you must remove previous version of app from your device and then install the app again. This should solve your problem.

Smileys in SQLite databases

I'm making a backup App for my different messengers.
The App copies (on rooted phones) the db files from each App, modifies the db to make it lighter, uploads with FTP and a PHP scripts copies data to a Mysql database.
Everything works just fine but the whatsapp Smileys.
When I open msgstore.db file on my android device with a SQLite reader in the "data" field (text) I see the smiley image, not a text equivalent (like in other Apps that I see things like (: )
When I open the db file in my computer I see a square like char. 😊
And when I open mysql I see nothing. Like if no data was uploaded.
What is really stored in that field as a smiley? How can I see it in my computer? How can I get it to mysql?
You will need to change your database to use utf8mb4. I think you will find the following very useful for updating your tables to use ths char set. My guess is when you've restored the database they have defaulted to incorrect char sets.
https://mathiasbynens.be/notes/mysql-utf8mb4

SQLite database file upload at server in SQL format

I want to upload local sqlite database file at server but in sql format. Is it possible to directly save it in mysql supported format? The file is uploaded successfully on server but its just a flat file of sqlite db. When i open it in editplus or import it in phpmyadmin, it shows error. But when I manually export the database from sqlite manager in .sql extension, it successfully gets open in readable format in editplus. Please help me with this problem. Thanks in advance !
AFAIK you are talking about two completely different things.
Its like comparing a DB dump file to a properly exported file like an xml file with schema and data information from Oracle or MySql
When you export you get a file with or without .sql extension and it means a file with set of queries like DDL or DML create,insert etc. That may be sequentially run to execute all the commands in it and provide you with the right schema and data present in that file.
Whereas a DB file that is created via app is specific to the device and is an .sqlite file which is specific to sqlite browser and that may read it and not a set of queries only that you may open in edit-plus or a text editor.
Sqlite DB file that you find on your device is dynamically generated pages to maintain the integrity of the db.
For more info you must read,
Format of sqlite database
Sorry I don't have code but the idea is,
--Edit with algo--
Assuming you have the create commands for all tables and constraints with you , as they are not going to change most of the time.
You may use this function as a Utility to create and maintain the sql
command list for you parallel to the db you have.
void createExportCommands()
{
...
- Read all tables one by one using a `Cursor`
- Based on specific tables/columns create queries
i.e. String query="insert into "+your_table+" values("+cursor.getString(0),....+");";
- Write this data into a file called export_data.sql and keep updating it in background
}
Perhaps its not the best approach but it will solve your issue.

Android - Download SQL Database and Search

I've been working on testing trying to get an SQL database off of a website then take all the records and store them into arrays. Problem is that I've tried a ton of downloading methods and I keep getting hit with an error with opening the SQL database. I can't tell if this is actually downloading, if the database is corrupt (I checked it and it looked correct) or if my queries are messed up. Bear with me because I am just learning SQL and Android development.
The file at the link you provide is not a SQLite database. It's an ASCII file that contains SQL statements for creating a database and inserting content. There's no straightforward way to execute the content of that file in an Android app.
To make this work you need to create an actual SQLite database from your SQL file. To do that, install SQLite for whatever your desktop OS is and use this command:
sqlite> .read <filename of your SQL file>
Replace the file on your website with the SQLite file that creates. That should get you past the open error.
What are you doing here is download your database from url and stored it in sdcard.
Now you should open a empty database in your app and then copy your database in your app database and then try to open it.(you are not copying the database) the default location of database is
private String DB_PATH = "/data/data/your package name/databases/";

Android SQLite reading

I want to only read data from the SQLite database. When I am creating database and reading it it is working but I have already a database created and I want to read data from this database.
I am pushing the database to the sdcard and trying to run the application but it is not reading form the database. I want to know that if install this .apk file in device then my database will also shift to the device or not.
Common practice is to store initial data on assets/raw folders of application resources. Then during 1st run just create DB using SQL scripts like:
create table if not exist
Fill DB with initial data - and here you're.

Categories

Resources