Android Question Lost in SQL

parijs

Active Member
Licensed User
Longtime User
I'm a bit lost
I have a database called favo in which I have different columns including (myid) and (dees) now I want to update (dees) with a variable called des in the row (myid)
I use this code but it doesn't work

SQL.ExecNonQuery2("UPDATE favo SET dees = ? WHERE myid = ?", Array As Object(des, myid))
 
Top