📜  如果退出 python sql - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:36.888000             🧑  作者: Mango

代码示例1
for name in ('bar','foo'): 
    cursor.execute("SELECT rowid FROM components WHERE name = ?", (name,))
    data=cursor.fetchall()
    if len(data)==0:
        print('There is no component named %s'%name)
    else:
        print('Component %s found with rowids %s'%(name,','.join(map(str, next(zip(*data))))))