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
  1. import csv, pyodbc

  2. # set up some constants
  3. MDB = 'c:/path/to/my.mdb'; DRV = '{Microsoft Access Driver (*.mdb)}'; PWD = 'pw'

  4. # connect to db
  5. con = pyodbc.connect('DRIVER={};DBQ={};PWD={}'.format(DRV,MDB,PWD))
  6. cur = con.cursor()

  7. # run a query and get the results
  8. SQL = 'SELECT * FROM mytable;' # your query goes here
  9. rows = cur.execute(SQL).fetchall()
  10. cur.close()
  11. con.close()

  12. # you could change the mode from 'w' to 'a' (append) for any subsequent queries
  13. with open('mytable.csv', 'wb') as fou:
  14.     csv_writer = csv.writer(fou) # default field-delimiter is ","
  15.     csv_writer.writerows(rows)
复制代码
没用过,网上搜的




欢迎光临 Crossin的编程教室 (https://bbs.crossincode.com/) Powered by Discuz! X2.5