| SQLITE_CHANGESET_DATA(3) | Library Functions Manual | SQLITE_CHANGESET_DATA(3) |
SQLITE_CHANGESET_DATA,
SQLITE_CHANGESET_NOTFOUND,
SQLITE_CHANGESET_CONFLICT,
SQLITE_CHANGESET_CONSTRAINT,
SQLITE_CHANGESET_FOREIGN_KEY —
constants passed to the conflict handler
#include
<sqlite3.h>
#define SQLITE_CHANGESET_DATA
#define SQLITE_CHANGESET_NOTFOUND
#define SQLITE_CHANGESET_CONFLICT
#define SQLITE_CHANGESET_CONSTRAINT
#define SQLITE_CHANGESET_FOREIGN_KEY
Values that may be passed as the second argument to a conflict-handler.
The conflicting row, in this case, is the database row with the matching primary key.
There is no conflicting row in this case. The results of invoking the sqlite3changeset_conflict() API are undefined.
The conflicting row in this case is the database row with the matching primary key.
No current or conflicting row information is provided. The only function it is possible to call on the supplied sqlite3_changeset_iter handle is sqlite3changeset_fk_conflicts().
There is no conflicting row in this case. The results of invoking the sqlite3changeset_conflict() API are undefined.
These declarations were extracted from the interface documentation at line 12256.
#define SQLITE_CHANGESET_DATA 1 #define SQLITE_CHANGESET_NOTFOUND 2 #define SQLITE_CHANGESET_CONFLICT 3 #define SQLITE_CHANGESET_CONSTRAINT 4 #define SQLITE_CHANGESET_FOREIGN_KEY 5
| January 24, 2024 | NetBSD 11.0 |