[android-beginners] Re: Notepad Tutorial and sqlite3

2009-10-04 Thread Emre A. Yavuz
Hi Graham, I'm glad to hear that ... Good luck with the rest, Emre > Date: Sun, 4 Oct 2009 08:16:43 -0700 > Subject: [android-beginners] Re: Notepad Tutorial and sqlite3 > From: gms...@gmail.com > To: android-beginners@googlegroups.com > > > Hi Emre

[android-beginners] Re: Notepad Tutorial and sqlite3

2009-10-04 Thread gmseed
Hi Emre Eventually found the database!! I opened the Eclipse DDMS perspective and clicked on the "File Explorer" tab and tracked the database down under: /data/data/com.android.demo.notepad1/database/data which is not I would expect :-) If I now rerun sqlite via the adb shell I get: ./adb -s

[android-beginners] Re: Notepad Tutorial and sqlite3

2009-10-04 Thread gmseed
Hi Emre Tried accessing the Notepad tutorial db and still get nothing?: ./adb -s emulator-5554 shell # sqlite3 /data/data/com.android.demo.notepad1.Notepadv1/databases/ notes SQLite version 3.5.9 Enter ".help" for instructions sqlite> .tables sqlite> .databases sqlite> Graham On 3 Oct, 21:47,

[android-beginners] Re: Notepad Tutorial and sqlite3

2009-10-04 Thread gmseed
Hi Emre Thanks for your reply. I'll try your suggestion. Strange because on p540 of Conder & Darcey's "Android" book they state: # sqlite3 /data/data/com.androidbook.PetTracker/databases/ pet_tracker.db with text "...to connect to the database we created ...". so I just followed the same sty

[android-beginners] Re: Notepad Tutorial and sqlite3

2009-10-03 Thread Emre A. Yavuz
Hi Graham, By executing the following command "# sqlite3 /data/data/com.android.demo.notepad1.Notepadv1/databases/notes.db" you've probably created a new database called "notes" and therefore it's not surprising that it doesn't contain any of the tables you look for. Try "# sqli