我试图使用2个下拉菜单中的索引位置来选择我的表格,然后在成绩列中选择正确的行...然后应将前缀列中的值返回给变量。 / p>
我有以下代码...
conn = sqlite3.connect('codes.db')
c = conn.cursor()
c.execute('')
def material_code(self):
tableType = self.comboBox.currentText() #drop down to select table
tablegrade = self.comboBox_2.currentText() #drop down to select the grade of material
tableType = tableType.lower()
tablegrade = tablegrade.lower()
c.execute('SELECT prefix FROM ' + tableType + ' WHERE grade = ' + tablegrade)
prefix_code = conn.fetchone()
print(prefix_code)
conn.commit()
编辑: