Crossin的编程教室
标题:
哪个模块支持读写mdb格式的数据库文件
[打印本页]
作者:
Eyrever
时间:
2016-5-17 16:53
标题:
哪个模块支持读写mdb格式的数据库文件
请问python中哪个模块可以支持读写mdb格式的数据库文件,如果有前辈可以给出示范代码更是感谢不尽
作者:
Eyrever
时间:
2016-5-17 20:39
没有人回答,是问得太傻了吗@crossin先生
作者:
crossin先生
时间:
2016-5-18 11:43
pyodbc
import csv, pyodbc
# set up some constants
MDB = 'c:/path/to/my.mdb'; DRV = '{Microsoft Access Driver (*.mdb)}'; PWD = 'pw'
# connect to db
con = pyodbc.connect('DRIVER={};DBQ={};PWD={}'.format(DRV,MDB,PWD))
cur = con.cursor()
# run a query and get the results
SQL = 'SELECT * FROM mytable;' # your query goes here
rows = cur.execute(SQL).fetchall()
cur.close()
con.close()
# you could change the mode from 'w' to 'a' (append) for any subsequent queries
with open('mytable.csv', 'wb') as fou:
csv_writer = csv.writer(fou) # default field-delimiter is ","
csv_writer.writerows(rows)
复制代码
没用过,网上搜的
欢迎光临 Crossin的编程教室 (https://bbs.crossincode.com/)
Powered by Discuz! X2.5