使用存储在变量中的索引位置选择SQLite3数据

时间:2019-03-28 01:10:24

标签: sqlite python-3.7

我试图使用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()

编辑:

db table setup

0 个答案:

没有答案