DiverseAndRemote.com
DiverseAndRemote.com

Reputation: 19888

Is there a set identity_insert on equivalent for SQLite?

In TSQL there is

SET IDENTITY_INSERT ON;

is there a functional equivalent in SQLite?

Upvotes: 15

Views: 6250

Answers (1)

CL.
CL.

Reputation: 180020

SQLite always allows inserting a value into the primary key column; automatically generated values are used only when the inserted value is NULL (explicitly or omitted).

For details, see the documentation.

Upvotes: 20

Related Questions