Update of /cvsroot/htoolkit/HSQL/SQLite/Database/HSQL
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16373/Database/HSQL
Modified Files:
SQLite2.hsc
Log Message:
SQLite2 doesn't support prepared statements
Index: SQLite2.hsc
===================================================================
RCS file: /cvsroot/htoolkit/HSQL/SQLite/Database/HSQL/SQLite2.hsc,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** SQLite2.hsc 4 Jan 2006 08:22:35 -0000 1.4
--- SQLite2.hsc 6 Jan 2006 09:38:51 -0000 1.5
***************
*** 74,77 ****
--- 74,78 ----
, connClosed = refFalse
, connExecute = execute sqlite
+ , connPrepare = throwDyn SqlUnsupportedOperation
, connQuery = query connection sqlite
, connTables = tables connection sqlite
***************
*** 116,119 ****
--- 117,122 ----
{ stmtConn = connection
, stmtClose = sqlite_free_table pResult
+ , stmtExecute= throwDyn SqlUnsupportedOperation
+ , stmtSetParam=throwDyn SqlUnsupportedOperation
, stmtFetch = fetch refIndex rows
, stmtGetCol = getColValue pResult refIndex columns rows
|