如何使用SQLite.swift插入多个记录

时间:2019-01-30 12:33:33

标签: sqlite.swift

我正在使用SQLite.swift包装器进行数据库操作

有没有规定在单个查询中插入多个记录?

一种解决方案是像这样执行原始查询

INSERT INTO MyTable (Column1, Column2, Column3)
VALUES ('John', 123, 'Lloyds Office'), 
('Jane', 124, 'Lloyds Office')

框架中还有其他规定吗?

0 个答案:

没有答案