>       oResult = oCursor.execute( "SHOW COLUMNS FROM " + sTableName + "" )

Hi Bernard,

Try using oCursor.fetchall() after the execution.  The return value of
execute() are the number of rows affected, and you can then pull each
fetched value by using either oCursor.fetchone() or oCursor.fetchall().

See:

    http://python.org/peps/pep-0249.html

for more details about this.  Hope this helps!

_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to