关于python:SQLAlchemy INSERT IGNORE

SQLAlchemy INSERT IGNORE

如何将多个数据记录插入表中而忽略重复项。我正在使用 SQLAlchemy。

谢谢!


prefix_with(“TEXT”)INSERT 和 SQL 的其余部分之间添加任意文本。 execute() 接受包含您要插入的记录的字典列表,或者如果您只想插入单个记录,则接受单个字典。

您要查找的行为的 SQLite 语法:

1
2
inserter = table_object.insert().prefix_with("OR REPLACE")
inserter.execute([{‘column1’:‘value1’}, {‘column1’:‘value2’}])

要始终将 INSERT 替换为 INSERT OR IGNORE,您可以使用编译器扩展:

1
2
3
4
5
6
from sqlalchemy.ext.compiler import compiles
from sqlalchemy.sql.expression import Insert

@compiles(Insert)
def _prefix_insert_with_ignore(insert, compiler, **kw):
    return compiler.visit_insert(insert.prefix_with(‘OR IGNORE’), **kw)

或者只是临时这样做,手动调用 compiles 装饰器并在完成后使用 deregister

1
2
3
4
5
6
7
8
9
10
11
from sqlalchemy.ext.compiler import compiles, deregister
from sqlalchemy.sql.expression import Insert

def _prefix_insert_with_ignore(insert, compiler, **kw):
    return compiler.visit_insert(insert.prefix_with(‘OR IGNORE’), **kw)

compiles(Insert)(_prefix_insert_with_replace)
try:
    # do some inserts…
finally:
    deregister(Insert)

这确实让人觉得很奇怪,因为它仍然是一个全局更改,但只要你不使用线程并确保在 deregister 调用之前所有内容都正确提交,它可能没问题。


原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/267950.html

(0)
上一篇 2022年6月19日
下一篇 2022年6月19日

相关推荐

发表回复

登录后才能评论