使用Python使用按钮在Access数据库中创建一个新表

时间:2013-11-07 20:24:33

标签: python-2.7 tkinter ms-access-2007

我正在尝试在访问数据库中创建一个新表 应该有两个按钮。

按钮1(浏览):选择将创建新表的(.mdb)文件

按钮2(运行):创建新表

到目前为止我写的代码:

import pyodbc
from Tkinter import *
import tkFileDialog

def browse():
    A = tkFileDialog.askopenfilename()
    return str (A)

def run():
    conn = pyodbc.connect('DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=' + browse())
    cur = conn.cursor()

    if cur.tables(table = 'new').fetchone():
    cur.execute('DROP TABLE new')

    cur.execute('CREATE TABLE new( ID integer, Name string)')
    conn.commit()
    print (' New created')


r = Tk()
r.title ('test')
r.geometry ('200x300')

b1 = Button(r,text = 'Browse', command = browse).place (x = 10, y =10)
b2 = Button (r, text = 'run', command = run).place (x = 10, y =50)
r.mainloop()

问题是,当我按下运行按钮时,它再次要求选择文件是否运行按钮应该在先前选择的(带有浏览按钮)访问数据库中创建新表。如果有人能告诉我一个方法。我正在使用Python 2.7和MS access 2007。

1 个答案:

答案 0 :(得分:4)

我没有pyodbc但其他代码正在运作。

我把它放在课堂上以使其更清洁。我将一些名称 - run()更改为create(),因为我使用名称run()作为mainloop()的函数。

如果您使用Create按钮,则仅在您之前未选择文件时才会打开FileDialog

创建数据库程序后,忘记文件名以准备好直接在Create按钮

中选择另一个文件名
import pyodbc
from Tkinter import *
import tkFileDialog

class Application():

    def __init__(self, root):
        #print 'debug: __init__()'

        self.root = root

        self.root.title('Database Creator')
        self.root.geometry('300x300')

        self.b1 = Button(self.root, text='Browse', command=self.browse)
        self.b1.place(x=10, y=10)

        self.b2 = Button(self.root, text='Create', command=self.create)
        self.b2.place(x=10, y=50)

        self.filepath = None

    #----------------------

    def run(self):
        #print 'debug: run()'

        self.root.mainloop()

    #----------------------

    def browse(self):
        #print 'debug: browse()'

        self.filepath = tkFileDialog.askopenfilename()

        if self.filepath:
            print 'File selected:', self.filepath
        else:
            print 'File not selected'

    #----------------------

    def create(self):
        #print 'debug: create()'

        if not self.filepath:
            self.browse()

        if self.filepath:
            conn = pyodbc.connect('DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=' + self.filepath)
            cur = conn.cursor()

            if cur.tables(table = 'new').fetchone():
                cur.execute('DROP TABLE new')

            cur.execute('CREATE TABLE new( ID integer, Name string)')

            conn.commit()

            print ' New created'

            # now I will be ready to select another file
            self.filepath = None

#----------------------------------------------------------------------

Application(Tk()).run()