|
Post by veneff on Jan 23, 2009 11:26:18 GMT -5
I am getting an error whenever I execute the COMMIT query. The program flow is Query = "BEGIN TRANSACTION" Query = "UPDATE..." Query = "INSERT..." Query = "COMMIT"
At this point I get the error: "SQL logic error or missing database" This sequence works OK in LB4. I don't disconnect from the database until after the "COMMIT".
Vance
|
|
|
Post by kokenge on Jan 23, 2009 11:37:26 GMT -5
commit needs to be: Query = "COMMIT TRANSACTION"
|
|
|
Post by veneff on Jan 24, 2009 14:18:21 GMT -5
Thank you!
That was the problem. For some reason I though that the word TRANSACTION was optional.
Vance
|
|