我有一个python代码创建一个gui,我使用游标(= curs)询问用户输入序列号。根据这个数字,oracle表返回一个结果(即1111111)。之后,我想从另一个表中进行第二次查询:'从customer_desc中选择project_name,其中customer_name_d =客户框中的值(= 1111111)'。有任何想法吗?我需要建立一个新的基地连接?如何设置where子句以便读取返回到gui文本字段的textvalue,带有盲变量? 感谢
import cx_Oracle
from tkinter import*
from tkinter import messagebox
def search():
try:
connstr='SOLVATIO/SOLVATIO@localhost'
conn = cx_Oracle.connect(connstr)
curs = conn.cursor()
curs.execute("select * from customers where afm='%s'"%afm.get())
result=curs.fetchone()
company_name.set(result[1])
e1.configure(state='disabled')
conn.close()
def clear():
afm.set('')
company_name.set('')
e1.configure(state='normal')
a1=Tk()
a1.title('SOLVATIO')
a1.geometry('600x300')
ptitle=Label(a1, text='''search asset''')
ptitle.grid(row=0, column=0, columnspan=2)
afm=StringVar()
company_name=StringVar()
l1=Label (a1, text=' AFM ')
e1=Entry(a1, textvariable=afm)
l2=Label (a1, text=' customer ')
e2=Entry(a1, textvariable=company_name)
b1=Button(a1, text=' Search ', command=search)
l1.grid(row=1, column=0)
e1.grid(row=1, column=1)
l2.grid(row=2, column=0)
e2.grid(row=2, column=1)
b1.grid(row=1, column=2)
a1.mainloop()
答案 0 :(得分:1)
你大部分都在那里。要使用绑定变量,您需要执行以下操作:
curs.execute("select * from customers where afm=:1", [afm.get()])
其余代码按原样运行。