I already have a sqlite database. And i put it in the "assets" folder of my project. Then what's the path of this databse. I read the document form adnroid. It said all the database in android,the path is data/data/pack_name/database_name. It make me confuse. I just place it in the "assets" folder. So the path is data/data/assets/database_name? Pls help .Thanks you very much
|
feedback
|
|
The package name is not the project name, the package name is the namespace. From Anthony's link.
For example, from the Hello World tutorial, the project name is If this application had a database, it would be stored at To see how it is for the other applications you can start your emulator. On the menu bar you have your avd's name (I think it stands for Android Virtual Device). On mine it s "avdessay:5554" (On Linux) From command line, type:
You have to replace 5554 by whatever port you are using. if you have the command prompt '#' you can type:
There, you will see that eveything is in a form of a package name. More info here | ||||
|
feedback
|
|
When you create a database by utilizing the You can access that resource by using
Any other information, look at Using your own SQLite database in Android Applications The As an example, my class starts with this at the top
So my database is in Hope this makes sense. | |||||||||||||
feedback
|
|
@ScCrow I too followed this example and had the same problems you did until I realized I was not using the DataBaseHelper correctly (or rather it had a quirk I overlooked). When you use your DatabaseHelper class in your activity, you have to make sure you call createDatabase first! If you look at the code for openDatabase it does NOT check to see if the database exists, so you either have to (attempt to) create the database in each activity you use it in, or modify the openDatabase method to check to make sure the db exists. The link posted does actually instruct you to use it this way but you (like me) may have glossed over that. Bad:
Good:
| |||
|
feedback
|
|
When I try to open my DB, I get "unable to open database file". I assume its not finding the DB and not some other programmer error. In the log I see the following which looks good to me.
This is the setup
In my projects assets in the Package Explorer, I see the ListsDb database. So I at least think I have it all correct. I am using the example at [http://www.reigndesign.com/blog/using-your-own-sqlite-database-in-android-applications/] In one of the posts here, someone offers a suggestion about setting some Assets parameters. {no response to post there}
Is this something we need to do, and if so, can we get a little better direction on the changes required. I could not find the places to make the suggested changes I looked at the project settings, and other things. Yep, Im new to the environment, so I may just be not finding them. Im using Eclipse on windows. | |||
|
feedback
|