anjanav wrote:Hi every body
can any one plz tell me that how to fetch an external DB{created in SQLite or SQL SERVER} stored in local hard drive in to android emulator.
This is indeed possible. However, you have to initially create the database using Android because Android will add a special metadata table that must be present in the DB. Or you have to add this table and metadata to your existing DB (sorry, I don't have specifics on this).
After you create the DB file using Android, use DDMS to pull the file out and put it somewhere else. You can then add your own tables, etc. Finally, use DDMS to put the file back.
All of this can even be done programmatically within certain file size limits.