Update of /cvsroot/htoolkit/HSQL/HSQL/Database/HSQL
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14159/HSQL/Database/HSQL
Modified Files:
Types.hs
Log Message:
Change the type of stmtExecute. This time in order to make it compatible with Oracle.
Index: Types.hs
===================================================================
RCS file: /cvsroot/htoolkit/HSQL/HSQL/Database/HSQL/Types.hs,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** Types.hs 9 Jan 2006 12:44:29 -0000 1.8
--- Types.hs 9 Jan 2006 14:49:23 -0000 1.9
***************
*** 133,139 ****
{ stmtConn :: Connection
, stmtClose :: IO ()
! , stmtSetParam :: Int -> SqlValue -> IO ()
! , stmtExecute :: IO Integer
! , stmtReset :: IO ()
, stmtFetch :: IO Bool
, stmtGetCol :: forall a . Int -> FieldDef -> (FieldDef -> CString -> Int -> IO a) -> IO a
--- 133,137 ----
{ stmtConn :: Connection
, stmtClose :: IO ()
! , stmtExecute :: [SqlValue] -> IO Integer
, stmtFetch :: IO Bool
, stmtGetCol :: forall a . Int -> FieldDef -> (FieldDef -> CString -> Int -> IO a) -> IO a
|