Update of /cvsroot/htoolkit/HSQL/MSI/Database/HSQL
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16911/Database/HSQL
Modified Files:
MSI.hsc
Log Message:
MSI doesn't support prepared statements
Index: MSI.hsc
===================================================================
RCS file: /cvsroot/htoolkit/HSQL/MSI/Database/HSQL/MSI.hsc,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** MSI.hsc 3 Jan 2006 22:59:46 -0000 1.5
--- MSI.hsc 6 Jan 2006 09:42:16 -0000 1.6
***************
*** 42,45 ****
--- 42,46 ----
{ connDisconnect = disconnect hDatabase
, connExecute = execute hDatabase
+ , connPrepare = throwDyn SqlUnsupportedOperation
, connQuery = query connection hDatabase
, connTables = tables hDatabase
***************
*** 82,85 ****
--- 83,88 ----
{ stmtConn = connection
, stmtClose = closeStatement hView refRecord
+ , stmtExecute= throwDyn SqlUnsupportedOperation
+ , stmtSetParam=throwDyn SqlUnsupportedOperation
, stmtFetch = fetch hView refRecord
, stmtGetCol = getColValue refRecord
|