Is there any way to get the column names from the pymssql results? If i specify as_dict=True I get back a dictionary, which does contain all the column headers, but since it is a dictionary they are not ordered.
|
feedback
|
|
pymssql claims to support the Python DB-API, so you should be able to get the
So, the first item in each of the "inner" sequences is the name for each column. | |||
|
feedback
|