Searched defs:keyColumn (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dinsert.c107 int keyColumn = -1; /* Column that is the INTEGER PRIMARY KEY */ local
278 ** is named in the IDLIST, then record in the keyColumn variable
279 ** the index into IDLIST of the primary key column. keyColumn is
293 keyColumn = i;
300 keyColumn = i;
312 ** key, the set the keyColumn variable to the primary key column index
316 keyColumn = pTab->iPKey;
365 if( keyColumn<0 ){
368 sqliteVdbeAddOp(v, OP_Column, srcTab, keyColumn);
370 sqliteVdbeAddOp(v, OP_Dup, nColumn - keyColumn
[all...]

Completed in 43 milliseconds