From: <kr_...@us...> - 2006-01-03 22:59:57
|
Update of /cvsroot/htoolkit/HSQL/HSQL/Database/HSQL In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24722/HSQL/Database/HSQL Modified Files: Types.hs Log Message: The type of execute function is changed. Now it returns the number of the rows affected. Index: Types.hs =================================================================== RCS file: /cvsroot/htoolkit/HSQL/HSQL/Database/HSQL/Types.hs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Types.hs 12 Dec 2005 15:21:55 -0000 1.3 --- Types.hs 3 Jan 2006 22:59:46 -0000 1.4 *************** *** 116,120 **** = Connection { connDisconnect :: IO () ! , connExecute :: String -> IO () , connQuery :: String -> IO Statement , connTables :: IO [String] --- 116,120 ---- = Connection { connDisconnect :: IO () ! , connExecute :: String -> IO Integer , connQuery :: String -> IO Statement , connTables :: IO [String] |