Andrei Gnepp - 2010-01-21

See https://sourceforge.net/mailarchive/forum.php?thread_name=4A96486E.1000203%40users.sourceforge.net&forum_name=python-sybase-misc

I've found the following workarounds to be effective:

cursor.execute('select * from some_table' , select=False)
cursor.execute(' select * from some_table' )

(In the second one, the sql starts with a space.)