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 interface part.

Use SQLiteDatabase. Use rawQuery() or query() to get a Cursor. Use 
getString(), getInt(), etc. to get column values, after using moveTo() 
or moveToNext() to get to the proper row.

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com
_The Busy Coder's Guide to Android Development_ Version 1.9 Available!

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to