I have a sqlite database where is a table that contains a field of type decimal (18,13). In it I try to save the contents of an EditText which contain something like 46.7654239810 using:
but the final result (in database) is a number with only 4 decimals..
What is wrong?
B4X:
mySQL.ExecNonQuery2("INSERT INTO OBS VALUES (?,?,?)",Array As Object(Null, Latitude.Text.Trim, Longitude.Text.Trim)
What is wrong?