From: <kr_...@us...> - 2003-09-27 09:12:26
|
Update of /cvsroot/htoolkit/HSQL/MySQL In directory sc8-pr-cvs1:/tmp/cvs-serv25038 Modified Files: HSQL.hsc Log Message: Fix encoding for SQL string. The fix allows to pass strings with zeros to MySQL Index: HSQL.hsc =================================================================== RCS file: /cvsroot/htoolkit/HSQL/MySQL/HSQL.hsc,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** HSQL.hsc 27 Sep 2003 09:10:09 -0000 1.7 --- HSQL.hsc 27 Sep 2003 09:12:13 -0000 1.8 *************** *** 317,320 **** --- 317,321 ---- mapChar '\r' s = '\\':'r' :s mapChar '\t' s = '\\':'t' :s + mapChar '\NUL' s = '\\':'0' :s mapChar c s = c :s |