我需要什么: 1. INSERT或IGNORE(COL1具有UNIQUE约束) 2.获取Sqlite3响应代码以检查是否插入或忽略了行。 3.如果忽略行,则打印行。其他继续。
query = "INSERT OR IGNORE INTO MYTABLE (COL1,COL2) VALUES ('VAL1', 'VAL2');"
db.execute(query)
我在想这样的事情:
response_code = db.execute(query)
if "insert" in response code:
continue
elif "ignore" in response_code
print(row)