Home
last modified time | relevance | path

Searched refs:aXRef (Results 1 – 2 of 2) sorted by relevance

/PHP-5.3/ext/sqlite/libsqlite/src/
H A Dupdate.c46 int *aXRef = 0; /* aXRef[i] is the index in pChanges->a[] of the in sqliteUpdate() local
87 aXRef = sqliteMalloc( sizeof(int) * pTab->nCol ); in sqliteUpdate()
88 if( aXRef==0 ) goto update_cleanup; in sqliteUpdate()
89 for(i=0; i<pTab->nCol; i++) aXRef[i] = -1; in sqliteUpdate()
129 aXRef[j] = i; in sqliteUpdate()
150 aXRef[j] = -1; in sqliteUpdate()
166 if( aXRef[pIdx->aiColumn[i]]>=0 ) break; in sqliteUpdate()
181 if( aXRef[pIdx->aiColumn[i]]>=0 ) break; in sqliteUpdate()
289 j = aXRef[i]; in sqliteUpdate()
367 j = aXRef[i]; in sqliteUpdate()
[all …]
/PHP-5.3/ext/sqlite3/libsqlite/
H A Dsqlite3.c96417 aXRef = sqlite3DbMallocRaw(db, sizeof(int) * pTab->nCol );
96418 if( aXRef==0 ) goto update_cleanup;
96419 for(i=0; i<pTab->nCol; i++) aXRef[i] = -1;
96453 aXRef[j] = i;
96475 aXRef[j] = -1;
96481 hasFK = sqlite3FkRequired(pParse, pTab, aXRef, chngRowid);
96500 if( aXRef[pIdx->aiColumn[i]]>=0 ){
96677 j = aXRef[i];
96717 if( aXRef[i]<0 && i!=pTab->iPKey ){
96806 sqlite3DbFree(db, aXRef);
[all …]

Completed in 294 milliseconds