http://my.oschina.net/zhengyijie/blog/35587
这里说通过pyodbc获取的数据,类似于一个元组,但是他们也可以通过字段名进行访问。
cursor.execute("select user_id, user_name from users")
row = cursor.fetchone()
print 'name:', row[1] # access by column index
print 'name:', row.user_name # or access by name
我试过了,可以通过字段名来访问这个元组。
sql_query = ('select top 2 * from User')
select_SQL = ms.Exec_selete(sql_query)
print select_SQL
for i in(select_SQL):
print i.QQ
结果是:
[(1, 'a1', '289746759'), (2, 'a2', '684000280')]
289746759
684000280
我的疑问是:
1.为什么元组可以通过关键字来访问?
2.返回的数据并没有包含字段名,程序是怎么通过字段名访问的?
3.可以通过pyodbc 获取某个表的字段名吗?我是SQL server 2008
准确的说应该是print dir(select_SQL[0])
print出来后发现有个cursor_description的特性。于是
print select_SQL[0].cursor_description。原来pyodbc提供了方法查看字段的各种属性的
3Q大神啊!