Public Member Functions | |
| def | __str__ |
Provides the format string to create the CSV line
appropriate for the field types of the low level query result description
It looks something like::
%s,"%s","%s",%s,%s,%s,%s,%s,"%s","%s"
Usage example::
llc = _mysql.connection(...)
llc.query("select * from ...")
result = llc.store_result()
csvf = CSVFormat( result.describe() )
for row in result.fetch_row(0):
print str(csvf) % tuple(row)
Definition at line 206 of file db.py.
| def DybPython::db::CSVFormat::__str__ | ( | self | ) |
1.4.7