Update of /cvsroot/htoolkit/HSQL/PostgreSQL
In directory sc8-pr-cvs1:/tmp/cvs-serv27195/PostgreSQL
Modified Files:
HSQL.hsc
Log Message:
Make the HSQL package compatible with Hugs
Index: HSQL.hsc
===================================================================
RCS file: /cvsroot/htoolkit/HSQL/PostgreSQL/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
***************
*** 141,145 ****
{ seFieldName :: String
}
! deriving (Show, Typeable)
-----------------------------------------------------------------------------------------
--- 141,151 ----
{ seFieldName :: String
}
! deriving Show
!
! sqlErrorTc :: TyCon
! sqlErrorTc = mkTyCon "Database.ODBC.HSQL.SqlError"
!
! instance Typeable SqlError where
! typeOf _ = mkAppTy sqlErrorTc []
-----------------------------------------------------------------------------------------
|