1

我有几个 ms 访问数据库,每个数据库都有一个名为PlotStatus-name-3/13/12.

我需要将这些表中的每一个导入到一个.csv表中。如果我手动将表的名称更改为PlotStatus_name_3_13_12,则此代码有效。有谁知道如何使用 python 更改表名?

#connect to access database
for filename in os.listdir(prog_rep_local):
if filename[-6:] == ".accdb":
    DBtable = os.path.join(prog_rep_local, filename)
    conn = pyodbc.connect(r'DRIVER={Microsoft Access Driver (*.mdb, *.accdb)};DBQ=' + DBtable)
    cursor = conn.cursor()
    ct = cursor.tables
    for row in ct():
        rtn = row.table_name
        if rtn[:10] == "PlotStatus":

            #this does not work:
            #Oldpath = os.path.join(prog_rep_local, filename, rtn)
            #print Oldpath
            #fpr = Oldpath.replace('-', '_')#.replace("/","_")
            #print fpr
            #newname = os.rename(Oldpath, fpr)  this does not work
            #print newname
            #spqaccdb = "SELECT * FROM " + newname


            #this workds if I manually change the table names in advance
            sqlaccdb = "SELECT * FROM " + rtn
            print sqlaccdb

            cursor.execute(sqlaccdb)
            rows = cursor.fetchall()
4

1 回答 1

1

一个更简单的解决方案是在表名周围添加方括号,这样 /s 就不会抛出 SQL 命令解释器。

sqlaccdb = "SELECT * FROM [" + rtn + "]"
于 2013-03-08T23:04:24.377 回答