John Curry
2009-06-11 20:48:41 UTC
All,
I've added the following lines to SguildPadsLib.tcl (near line 34)
to 'escape' the single quote character (using SQL syntax.).
set app [lindex $dataList 11]
set intTime [lindex $dataList 12]
+ set searchPat '
+ set replacePat `'
+ set inString $app
+ regsub -nocase -- $searchPat $inString $replacePat app
Another option could be to remove the single quote.
-John Curry
I've added the following lines to SguildPadsLib.tcl (near line 34)
to 'escape' the single quote character (using SQL syntax.).
set app [lindex $dataList 11]
set intTime [lindex $dataList 12]
+ set searchPat '
+ set replacePat `'
+ set inString $app
+ regsub -nocase -- $searchPat $inString $replacePat app
Another option could be to remove the single quote.
-John Curry