How To Execute The Sql Statement With Mdb.update?
The statement is the following: UPDATE mytable SET displayed_value=(close_time_2 || '-' || open_time_2) WHERE close_time_2 != '' Now I call it with mDb.execSQL. How to execute the
Solution 1:
It's really not that hard to find out how to use the update
-method. See the Docs and this Sample-code.
Post a Comment for "How To Execute The Sql Statement With Mdb.update?"