Dear All,
The code below:
Shows the following in the log:
When logging the content of "difference" in the given rowid, it shows (null string) and not as expected 1.000723, any idea why that is?
FYI, "difference" is defined as REAL in table2.
Thanks in advance!
The code below:
B4X:
Log (d)
Log (rs.GetInt ("rowid"))
sql3.ExecNonQuery ("UPDATE table2 Set difference = " & d & " WHERE rowid = " & rs.GetInt ("rowid"))
Log (sql3.ExecQuerySingleResult ("SELECT difference FROM table2 LIMIT 1 OFFSET " & (rs.GetInt ("rowid"))))
Shows the following in the log:
B4X:
1.000723
516
(null string)
When logging the content of "difference" in the given rowid, it shows (null string) and not as expected 1.000723, any idea why that is?
FYI, "difference" is defined as REAL in table2.
Thanks in advance!