Update of /cvsroot/htoolkit/HSQL/HSQL/Database/HSQL
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21065/Database/HSQL
Modified Files:
Types.hs
Log Message:
the stmtSetParam method needs the param index.
Index: Types.hs
===================================================================
RCS file: /cvsroot/htoolkit/HSQL/HSQL/Database/HSQL/Types.hs,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** Types.hs 4 Jan 2006 22:19:57 -0000 1.6
--- Types.hs 5 Jan 2006 20:14:23 -0000 1.7
***************
*** 133,137 ****
{ stmtConn :: Connection
, stmtClose :: IO ()
! , stmtSetParam :: SqlValue -> IO ()
, stmtExecute :: IO Integer
, stmtFetch :: IO Bool
--- 133,137 ----
{ stmtConn :: Connection
, stmtClose :: IO ()
! , stmtSetParam :: Int -> SqlValue -> IO ()
, stmtExecute :: IO Integer
, stmtFetch :: IO Bool
|