On 7/25/2012 10:02 AM, Arbol One wrote:
OK, continuing with the writing to the database, here is the driver method
for the class rapper for SQLite3.
The problem I have is that I have no control as to the exact location where
I want the data to be stored, look the table below to have a better idea of
what I mean.
My question is, is there a function that will allow me to directly plug the
data at that specific index I want?
Ultimately, what I want to do is to store all the data in ONE row. How is
this handle in SQLite3?
You're using bind wrong. Don't use the same position each time, do all
the binds then do the step.
As before, you have a resource leak in this. You don't have a way to
finalize the statement on error.
Rob
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users