[q-lang-cvs] q/modules/odbc/examples odbc_examp.q,1.7,1.8
Brought to you by:
agraef
From: Albert G. <ag...@us...> - 2008-02-12 02:05:21
|
Update of /cvsroot/q-lang/q/modules/odbc/examples In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv24679 Modified Files: odbc_examp.q Log Message: comment out modified definition for use with MS Access (doesn't work with MySQL) Index: odbc_examp.q =================================================================== RCS file: /cvsroot/q-lang/q/modules/odbc/examples/odbc_examp.q,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** odbc_examp.q 12 Feb 2008 01:15:11 -0000 1.7 --- odbc_examp.q 12 Feb 2008 02:05:17 -0000 1.8 *************** *** 92,96 **** (NAME,params DESC); ! fields DESC = join "," (map (sprintf "\"%s\" %s") DESC); params DESC = join "," (map (cst "?") DESC); --- 92,98 ---- (NAME,params DESC); ! // try this with MS Access ! //fields DESC = join "," (map (sprintf "\"%s\" %s") DESC); ! fields DESC = join "," (map (sprintf "%s %s") DESC); params DESC = join "," (map (cst "?") DESC); |