Update of /cvsroot/htoolkit/HSQL/PostgreSQL
In directory sc8-pr-cvs1:/tmp/cvs-serv3737/PostgreSQL
Modified Files:
HSQL.hsc
Log Message:
bugfix
Index: HSQL.hsc
===================================================================
RCS file: /cvsroot/htoolkit/HSQL/PostgreSQL/HSQL.hsc,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** HSQL.hsc 6 Sep 2003 22:48:00 -0000 1.3
--- HSQL.hsc 7 Sep 2003 19:28:01 -0000 1.4
***************
*** 307,310 ****
--- 307,311 ----
toSqlValue s = '\'' : foldr mapChar "'" s
where
+ mapChar '\\' s = '\\':'\\':s
mapChar '\'' s = '\\':'\'':s
mapChar '\n' s = '\\':'n':s
|