[android-developers] Re: android SDK 1.5 where do i find the sqlite db file in my system

2009-09-23 Thread Shrenik Vikam
check the binary file location for that where ever the sqlitexxx.exe will be there the db is stored On Sep 23, 4:29 pm, Damodhar wrote: > Hi thanks for the replay but  am using the SDK in my system my > application path is  C:\android\testapp\   here where can i find the > test.db file > > my sr

[android-developers] Re: android SDK 1.5 where do i find the sqlite db file in my system

2009-09-23 Thread Damodhar
Hi thanks for the replay but am using the SDK in my system my application path is C:\android\testapp\ here where can i find the test.db file my src path is C:\android\testapp\src\com\testapp can i find C: \android\testapp\ this path ?? --~--~-~--~~~---~--~~

[android-developers] Re: android SDK 1.5 where do i find the sqlite db file in my system

2009-09-23 Thread Sekar
Mr. Damu, you can't findout the db file in your system, but you find out DB in SD Card the path should be like this /data/ data/package_name/databases. " For more information, please visit http://youropensource.com On Sep 23, 3:43 pm, Shrenik Vikam wrote: > default  it is stored in the same p

[android-developers] Re: android SDK 1.5 where do i find the sqlite db file in my system

2009-09-23 Thread Shrenik Vikam
default it is stored in the same path "All databases, SQLite and others, are stored on the device in /data/ data/package_name/databases. " (source:http://developer.android.com/guide/topics/data/data- storage.html#db) Shrenik Vikam +91-9011026305 Pune,India. On Sep 23, 2:54 pm, Damodhar wrote:

[android-developers] Re: android SDK 1.5 where do i find the sqlite db file in my system

2009-09-23 Thread Mark Murphy
> In android am using the SDK 1.5 am using the Database concepts to > create the Sqlite Db file but i don't know where the file is stored. > any one help me to find that Db file in my system please /data/data/your.package.here/databases (where your.package.here is the package that you declare