Which Eclipse Android project folder to place databases
Hello,
I am new to Android development, so I apologize in advance if this is a silly question.
I can create a database and then create tables, etc. via the sqlite3 cmd line util just find. I can see the database in the directory when I exit sqlite3. My question is where in my Eclipse Android project folder structure do I copy this db so I can access from my code? Also, how to I point to it in my code when I want to open it?
Thank you in advance
-Chris
New tutorials from Helloandroid
Recent Apps
Android on Twitter
-
@Maudyp17 (Malcolm Yong)I have just discovered territory 3 in My Railway! You can get it for FREE on Android! http://t.co/lWE84eeL #android #androidgames
14 min 19 sec ago -
@USandroidtablet (USA Android Tablet)USA Android: Android OS 2.3 Touch Screen 7" inch Mid Tablet PC HDMI WIFI MID 1GHz 512MB 4GB #android http://t.co/9sDVUCbP #android #tabletpc
14 min 20 sec ago -
@NeeNeeDahl (Carmen M. Dahl)I've just received an achievement: Cartographer https://t.co/CaoA5G0q #Android #Androidgames
14 min 22 sec ago -
@AshleyLynnLytle (Ashley Lytle)
just reached level 9 on Rock The Vegas on my Android http://t.co/r86NCvaT #Android #Androidgames
14 min 22 sec ago -
@belindassy (Belinda Soon)I have just connected Farm in My RailWay. You can get it for FREE on Android! http://t.co/Y7Sw9NjS #android #androidgames
14 min 23 sec ago
Poll
Useful resources
Android Development Projects
- Android App wanted immediately by JoePublic
- LIST DATA PROJ by nhammoud
- Nonpublic project #1433932 by subpariq
- Alarm Android Application Design by globalheed
- Simple Album App for Android by ayfonfan
- iOS and Android photo manipulation 'Morph App' by whatwedomedia
- Onsite Software Engineers in Germany by sudhirshree
- Augmented reality by merder99
- Nonpublic project #1433560 by vobla73
- Mobile app coder needed for quick, simple app by Ergometrix



I'm at about the same place in my project. /databases/your_database_name. db
5apr2011 -
sqlite3 *.db (database files) go in the :
/data/data/your_project_ident
your_project_ident is like >>>>>> org.exampleSite.myProject <<<<<< t; events.db <<<<<<<
your_databse_name is like >>>>>>>&g
best ...
cm