[android-developers] Sqlite Delete doesn't delete

2010-08-13 Thread Wall-E
I have written a database adapter to implement database functions like query(), delete(), update(), insert()etc. So I have been able to insert and query just fine but deleting a specific row is not working at all. I have tested deleting all the rows and that works fine even though the return

Re: [android-developers] Sqlite Delete doesn't delete

2010-08-13 Thread Chris Stewart
I use db.execSQL to delete. -- Chris Stewart http://chriswstewart.com Fantasy Footballhttp://chriswstewart.com/android-applications/fantasy-football/- Android app for fantasy football fanatics and MFL owners Social Updaterhttp://chriswstewart.com/android-applications/social-updater/- An easy

Re: [android-developers] Sqlite Delete doesn't delete

2010-08-13 Thread Farjad Habib
give the phonenumber in single quoteslike below PHONENUMBER_ID + =' + phonenumber +' On Fri, Aug 13, 2010 at 8:15 PM, Wall-E bashee...@gmail.com wrote: I have written a database adapter to implement database functions like query(), delete(), update(), insert()etc. So I have been able