Answers for "python check one row"

0

if exits python sql

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))))))
Posted by: Guest on June-10-2020

Code answers related to "TypeScript"

Browse Popular Code Answers by Language