Here a short programme code like the one in my programme:
#DB=0
InitSQLite()
DBHandle=SQLiteOpen(#DB,"test1.db")
Query$="create table status(name text);"
result=SQLiteExec(Query$)
Debug SQLiteError(result)
SQLiteClose(#DB)
DBHandle=SQLiteOpen(#DB,"test2.db")
Query$="create table status(name text);"
result=SQLiteExec(Query$)
Debug SQLiteError(result)
SQLiteClose(#DB)
DeleteFile("test1.db")
DeleteFile("test2.db")
Can someone tell please why this doesn't work ?
I have no idea where to look anymore.
Thanks
SQLite Errormessage "library routine called out of sequ
I think El_Choni mentioned that there was a bug in the userlib. I think you're running into it here. He said he was going to post a new version..
-Mitchell
Check out kBilling for all your billing software needs!
http://www.k-billing.com
Code Signing / Authenticode Certificates (Get rid of those Unknown Publisher warnings!)
http://codesigning.ksoftware.net
Check out kBilling for all your billing software needs!
http://www.k-billing.com
Code Signing / Authenticode Certificates (Get rid of those Unknown Publisher warnings!)
http://codesigning.ksoftware.net