Update of /cvsroot/htoolkit/HSQL/HSQL/Database
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv14411/Database
Modified Files:
HSQL.hsc
Log Message:
fix export list
Index: HSQL.hsc
===================================================================
RCS file: /cvsroot/htoolkit/HSQL/HSQL/Database/HSQL.hsc,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** HSQL.hsc 20 Sep 2006 10:52:36 -0000 1.20
--- HSQL.hsc 21 Nov 2006 08:23:18 -0000 1.21
***************
*** 22,28 ****
-- the functions described here are used to perform SQL queries and commands.
, execute -- :: Connection -> String -> IO Integer
- , prepare -- :: Connection -> String -> IO Integer
, Statement
, query -- :: Connection -> String -> IO Statement
, closeStatement -- :: Statement -> IO ()
, executePrepared -- :: Statement -> [SqlValue] -> IO ()
--- 22,28 ----
-- the functions described here are used to perform SQL queries and commands.
, execute -- :: Connection -> String -> IO Integer
, Statement
, query -- :: Connection -> String -> IO Statement
+ , prepare -- :: Connection -> String -> IO Statement
, closeStatement -- :: Statement -> IO ()
, executePrepared -- :: Statement -> [SqlValue] -> IO ()
|