21 Jul
2005
21 Jul
'05
4:31 p.m.
--On 21. Juli 2005 10:14:32 -0600 hpinson@indepthl.com wrote:
In a Python script, how can I break up a SQL statement over more than one line? For example, to transform
# generate the sql statement sql="DELETE FROM tblUsers WHERE user_name LIKE '%'"
to:
# generate the sql statement sql="DELETE FROM tblUsers WHERE user_name LIKE '%'"
...does not work. Is there a way to break lines?
Why don't you use ZSQL methods? -aj