SQLite Errormessage "library routine called out of sequ
Posted: Thu Nov 13, 2003 11:39 am
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
#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