[android-developers] Re: How can we use sqlite3 for database purpose

2008-12-19 Thread Robert Green
Providers aren't that hard once you take a good look at the example. I used one for my DB and it does the inserts, updates, deletes and queries exactly like I need it to. On Dec 19, 5:30 am, "luckcomesh...@gmail.com" wrote: > Hi eyedol, > > Thanks for your reply. i have tried those exercises and

[android-developers] Re: How can we use sqlite3 for database purpose

2008-12-19 Thread Mark Murphy
luckcomesh...@gmail.com wrote: > Want to create data base using Android and need to populate in the > required places. > Please tell me the procedure to get the each column values(like first > name, last name) in a specific row by calling some functions(like get/ > set) to populate in user interfa

[android-developers] Re: How can we use sqlite3 for database purpose

2008-12-19 Thread luckcomesh...@gmail.com
Hi eyedol, Thanks for your reply. i have tried those exercises and still I'm confusing. In those exercises, not using "Content Providers". Actually, I want to update APN settings data in existing code(open source code). I have updated the table with some other entries and modified related fil

[android-developers] Re: How can we use sqlite3 for database purpose

2008-12-18 Thread eyedol
Check the Notepad tutorials. On Dec 19, 3:47 am, "luckcomesh...@gmail.com" wrote: > Hi All, > > How can we use sqlite3 for database usage in Android. I'm trying to > use it, but I couldn't get enough information on these things. I want > to create new database(new tables) and want to use that in

[android-developers] Re: How can we use sqlite3 for database purpose

2008-12-18 Thread luckcomesh...@gmail.com
Hi everyone, Want to create data base using Android and need to populate in the required places. Please tell me the procedure to get the each column values(like first name, last name) in a specific row by calling some functions(like get/ set) to populate in user interface part. Give me some examp