Re: cx_Oracle string problems...

2006-02-13 Thread tooper
Looks like a space is missing before VALUES keyword ? -- http://mail.python.org/mailman/listinfo/python-list

Re: cx_Oracle string problems...

2006-02-13 Thread MooMaster
Lol, that was a copy paste error into the post on my part...but the problem has been fixed. Turns out that there was a string.replace call somewhere else in the code that replaced all single quotes with empty strings, which thus caused the singe quotes to disappear! Whoops! Thanks for the look,

Re: cx_Oracle string problems...

2006-02-13 Thread Carsten Haese
On Mon, 2006-02-13 at 13:18, MooMaster wrote: Lol, that was a copy paste error into the post on my part...but the problem has been fixed. Turns out that there was a string.replace call somewhere else in the code that replaced all single quotes with empty strings, which thus caused the singe

Re: cx_Oracle string problems...

2006-02-13 Thread Carsten Haese
On Mon, 2006-02-13 at 13:50, Carsten Haese wrote: By using parametrized queries, you don't have to worry about any of the supplied values requiring special treatment due to any quotation marks or apostrophes that might they might contain. Add grammar corrections to taste. -Carsten --