How to provide the security to my .sqlite file in assets folder? - android

In my app i have use .sqlite database when zip my .apk file and extract this one my all code and database file also is came.How to provide the security to my database file and source code any one please give any suggestion.
Thank u in advice.

So at a guess you are using a pre-populated SQLite database? You could use SQLCipher to encrypt the database - it works with pre-populated and new ones created by the app.

Related

Android - is it possible to open a database file that download from web services using "sqlite asset helper"?

This is the logic I am trying to achieve:
Download the database from web services
unzip it
load the database using SQLite asset helper
delete the zip file
I am wondering if it is possible to achieve using SQLite asset helper, or I should use other method?
SQLiteAssetHelp is designed to copy the database file from the assets folder, which is part of the shipped app package.
You already have the file; copying is not necessary.
Just open your file through SQLiteDatabase.
I am wondering if it is possible to achieve using SQLite asset helper
No, sorry.

Best way to populate SQLiteDatabase with initial data?

Say I have data about customers and I initially have around 1000 pre-determined customers details I want to insert into my SQLiteDatabase.
Would it be wise to store that data into a text file in my assets folder with my own formatting (tabs to indicate columns and new lines to indicate rows), then just read the text file and insert the data into the database with insert statements? I feel this is not the best way and very in-efficient.
Is there a better way of doing this?
You can use the utility to create your SQL Lite database offline on PC, such as this:
http://portableapps.com/apps/development/sqlite_database_browser_portable
You can package this database along with your app and then put it on phone storage and continue from there.
You can do do in two ways..
Way 1:
You can make one .sqlite file with already 1000 customer records inserted in database and you can use it that .sqlite file from assets folder. Then you can copy those records in your internal database or use that only database.
Way 2:
You can put this 1000 records on server and call it by web service at first time app is launched..
Hope it will help you.
User a .sqlite or .db file in your assets folder with prelaoded entries and import this file to you app from asset folder.
You can use this add-on to access and create you db file
https://addons.mozilla.org/en-US/firefox/addon/sqlite-manager/
and this is tutorial to access database file from assets
Android: Accessing assets folder sqlite database file with .sqlite extension
I would bring along the already pre-populated database .db file.
I've done this before with "sample" data included as part of an application.

how to CREATE DIRECTORY in android sqlite database?

i have to create a DIRECTORY in a database in which a few file will store.when user need any kind of file, the file fetches from that directory .
You can't cerate a directory in an sqlite database.
Either you create a directory on the filesystem using File.mkdir.
Or you create a table in a sqlite database. Here's a good tutorial.
There is no way to make directories in sqlite db.
Use android provided api for data storage read this tutorial.
Please first read about databases & then try to use it!!
Database:
A database is an organized collection of data, today typically in digital form.
Directory:
A directory or folder is nothing more than a location on a disk used for storing information about files.

How to access sqlite database which already exists in android

I have created an sqlite databse and put it into the assets folder. How can I access it? I have created a database helper class also, but my data is "not taking the path".
Plz help me
Thanks
Copy your database file from /asset to internal databases directory /data/data/<package_name>/databases/, then use that database file.
Look at this SO question How to ship an Android application with a database?.
Also this tutorial Using your own SQLite database in Android applications

Accessing .sqlite file in Android 2.1

I have a .sqlite file with one table in it. i want to access this data. Please tell me, where to copy this .sqlite file (in eclipse project) and how to access the data from this .sqlite file.
please suggest some code or liniks.. [i am using Android 2.1, dont know the database version..]
Thank you..
Here are a few articles that explain exactly that ;)
http://www.helloandroid.com/tutorials/how-have-default-database
http://www.reigndesign.com/blog/using-your-own-sqlite-database-in-android-applications/
Include a database file with Android application via Eclipse

Categories

Resources