[android-developers] Re: Problem in Viewing table - sdk1.0

2009-01-15 Thread loty
Best way to deal with SQLite that I found is to download and install Firefox SQLite Addon module. Then use adb pull command to download your batabase from the emulator to your desktop and view/manipulate it in Firefox SQLite app. You can put your db back with adb push command. Saved me a lot of

[android-developers] Re: Problem in Viewing table - sdk1.0

2009-01-14 Thread PRATAP SOLAPUR
you should use .tables to view the tables in the db. On 1/13/09, jayesh.thadani jayesh.thad...@gmail.com wrote: Hi pratap, yes i created table in program... and it is working fine, i am able to retrieve data from table, my problem is .table in sqlite3 is not showing tables that

[android-developers] Re: Problem in Viewing table - sdk1.0

2009-01-13 Thread PRATAP SOLAPUR
have u created the table in the command mode or in programi think the table has not been created Use .schema with no arguements, it'll list all the tables... On 1/13/09, jayesh.thadani jayesh.thad...@gmail.com wrote: Hi.. I am using sdk1.0 i created database as

[android-developers] Re: Problem in Viewing table - sdk1.0

2009-01-13 Thread jayesh.thadani
Hi pratap, yes i created table in program... and it is working fine, i am able to retrieve data from table, my problem is .table in sqlite3 is not showing tables that are in database Same problem is with notepad1,2 3 application which is given as a sample application.. In sample example,