I can assure you that the Python string concatenation has no problems
with quotes in strings -- in fact it never looks at what's in the
string. Quote interpretation is done by the parser -- Python objects
are arrays of bytes, and don't contain quotes.
>From looking at the relevant routine in msqlmodule.c it seems that
this also doesn't do any quote handling.
Therefore my suspicion is that mSQL itself handles quotes in its
queries. Maybe Anthony Baxter can comment on this?
> It also is giving me problems when I try writing out my HTML.
What exactly happens here? This sounds like a totally unrelated
problem...
--Guido van Rossum, CWI, Amsterdam <mailto:Guido.van.Rossum@cwi.nl>
<http://www.cwi.nl/cwi/people/Guido.van.Rossum.html>