Hello,
I’m trying to make changes in the database using RowSet.Editrow. Connection Ok., Querying data is OK. But changing it using the following code is not possible. Nothing happens. No error
var rs as RowSet
rs = SQLiteDatabase1.SelectSQL(“SELECT f1, f2 from t1 where f1 = ‘test1’;” )
rs.EditRow
rs.Column(“f1”).StringValue = “test2”
rs.SaveRow
rs.Close
thanks
Musti
9 posts - 6 participants