Qore jni Module 2.4.0
Loading...
Searching...
No Matches
Upsert Result Codes

Variables

static int org.qore.lang.sqlutil.AbstractTable.UR_Inserted = 1
 row was inserted
static int org.qore.lang.sqlutil.AbstractTable.UR_Verified = 2
 row was updated unconditionally (not returned with UpsertSelectFirst)
static int org.qore.lang.sqlutil.AbstractTable.UR_Updated = 3
 row was updated because it was different (only possible with UpsertSelectFirst)
static int org.qore.lang.sqlutil.AbstractTable.UR_Unchanged = 4
 row was unchanged (only possible with UpsertSelectFirst, UpsertInsertOnly, and UpsertUpdateOnly)
static int org.qore.lang.sqlutil.AbstractTable.UR_Deleted = 5
 row was deleted (only possible with batch upsert methods such as upsertFromIterator() where upsert option delete_others is true)

Detailed Description