Hello there
I am adding many records from the response to a HttpUtils2 PostString into my SQLite db on my device. I just want to know if there is a faster way other than looping through each row in the response and executing this code:
SQL1.ExecNonQuery("INSERT INTO Inspections VALUES('" & Var1 & "', '" & Var2 & "', '" & Var3 & "', '" & Var4 & "')")
There will be a few thousand rows and it fetches the data to the device really quickly. Inserting into the db takes a good 20 seconds..
Thanks in advance for your advice..
Derek.
I am adding many records from the response to a HttpUtils2 PostString into my SQLite db on my device. I just want to know if there is a faster way other than looping through each row in the response and executing this code:
SQL1.ExecNonQuery("INSERT INTO Inspections VALUES('" & Var1 & "', '" & Var2 & "', '" & Var3 & "', '" & Var4 & "')")
There will be a few thousand rows and it fetches the data to the device really quickly. Inserting into the db takes a good 20 seconds..
Thanks in advance for your advice..
Derek.