I can read data from Access,but when use update,
When I close the software,and open the mdb with Access 2010,I find the data doesn't change.
I know in VB6,you must use sql.update to make the data real change.How can I do with B4J?
B4X:
sql.BeginTransaction
sql.ExecNonQuery("update timu set zd=true where xh ='" & xh & "'")
sql.TransactionSuccessful
I know in VB6,you must use sql.update to make the data real change.How can I do with B4J?