I'm trying to write from Android to a SqLite db
Following the advice of this post I used the following lines:
But when the fields to be inserted are several dozen or or hundreds, it is easy to confuse some values and write on nearby fields
The question is: how to understand if the value entered in the value map will exactly write on the desired field?
Is there an IntelliSense-like system or other tools that displays the field corresponding to a value in the value map?
Following the advice of this post I used the following lines:
INSERT INTO - MANY FIELD PROBLEM:
Query = "INSERT INTO DOCUMENTIRIGHE VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"
Starter.oSQL.execNonQuery2(Query, Array As String(0,"","","","",Null,Null,"","","","",Null,Null,"","","","",0,0,modVaGlob.cliente_codice_attuale,0,0,0,0,0,0,modVaGlob.agente_codice_attuale,0,0,0,0,0,Null,Null,"C","A",Null,0,"",0,num_riga))
But when the fields to be inserted are several dozen or or hundreds, it is easy to confuse some values and write on nearby fields
The question is: how to understand if the value entered in the value map will exactly write on the desired field?
Is there an IntelliSense-like system or other tools that displays the field corresponding to a value in the value map?