Comment obtenir le schéma de table SQL PyoDBC

# columns in table x
for row in cursor.columns(table='x'):
    print(row.column_name)
Courageous Cobra