Searched refs:regRowCount (Results 1 – 2 of 2) sorted by relevance
| /sqlite-3.40.0/src/ |
| H A D | update.c | 343 int regRowCount = 0; /* A count of rows changed */ in sqlite3Update() local 671 regRowCount = ++pParse->nMem; in sqlite3Update() 672 sqlite3VdbeAddOp2(v, OP_Integer, 0, regRowCount); in sqlite3Update() 1103 if( regRowCount ){ in sqlite3Update() 1104 sqlite3VdbeAddOp2(v, OP_AddImm, regRowCount, 1); in sqlite3Update() 1136 if( regRowCount ){ in sqlite3Update() 1137 sqlite3CodeChangeCount(v, regRowCount, "rows updated"); in sqlite3Update()
|
| H A D | insert.c | 717 int regRowCount = 0; /* Memory cell used for the row counter */ in sqlite3Insert() local 1042 regRowCount = ++pParse->nMem; in sqlite3Insert() 1043 sqlite3VdbeAddOp2(v, OP_Integer, 0, regRowCount); in sqlite3Insert() 1374 if( regRowCount ){ in sqlite3Insert() 1375 sqlite3VdbeAddOp2(v, OP_AddImm, regRowCount, 1); in sqlite3Insert() 1422 if( regRowCount ){ in sqlite3Insert() 1423 sqlite3CodeChangeCount(v, regRowCount, "rows inserted"); in sqlite3Insert()
|