Update of /cvsroot/htoolkit/HSQL/HSQL/Database/HSQL
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16057/Database/HSQL
Modified Files:
Types.hs
Log Message:
The proper implementation for prepared statements for SQLite3 requires an additional step before the actual parameter bindings. There is a new filed stmtReset in StatementThe proper implementation for prepared statements for SQLite3 requires an additional step before the actual parameter bindings. There is a new filed stmtReset in Statement,,CVS: ----------------------------------------------------------------------
Index: Types.hs
===================================================================
RCS file: /cvsroot/htoolkit/HSQL/HSQL/Database/HSQL/Types.hs,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** Types.hs 5 Jan 2006 20:14:23 -0000 1.7
--- Types.hs 9 Jan 2006 12:44:29 -0000 1.8
***************
*** 135,138 ****
--- 135,139 ----
, stmtSetParam :: Int -> SqlValue -> IO ()
, stmtExecute :: IO Integer
+ , stmtReset :: IO ()
, stmtFetch :: IO Bool
, stmtGetCol :: forall a . Int -> FieldDef -> (FieldDef -> CString -> Int -> IO a) -> IO a
|