From: <kr_...@us...> - 2004-01-04 13:15:11
|
Update of /cvsroot/htoolkit/HSQL/MySQL In directory sc8-pr-cvs1:/tmp/cvs-serv27195/MySQL Modified Files: HSQL.hsc Log Message: Make the HSQL package compatible with Hugs Index: HSQL.hsc =================================================================== RCS file: /cvsroot/htoolkit/HSQL/MySQL/HSQL.hsc,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** HSQL.hsc 27 Sep 2003 09:49:19 -0000 1.10 --- HSQL.hsc 4 Jan 2004 13:14:58 -0000 1.11 *************** *** 108,112 **** { seFieldName :: String } ! deriving (Typeable, Show) ----------------------------------------------------------------------------------------- --- 108,119 ---- { seFieldName :: String } ! deriving Show ! ! sqlErrorTc :: TyCon ! sqlErrorTc = mkTyCon "Database.ODBC.HSQL.SqlError" ! ! instance Typeable SqlError where ! typeOf _ = mkAppTy sqlErrorTc [] ! ----------------------------------------------------------------------------------------- |