Home
last modified time | relevance | path

Searched refs:azRowid (Results 1 – 3 of 3) sorted by relevance

/sqlite-3.40.0/ext/misc/
H A Ddbdump.c252 static char *azRowid[] = { "rowid", "_rowid_", "oid" }; in tableColumnList() local
256 if( sqlite3_stricmp(azRowid[j],azCol[i])==0 ) break; in tableColumnList()
263 rc = sqlite3_table_column_metadata(p->db,0,zTab,azRowid[j],0,0,0,0,0); in tableColumnList()
264 if( rc==SQLITE_OK ) azCol[0] = azRowid[j]; in tableColumnList()
/sqlite-3.40.0/tool/
H A Dsqldiff.c352 const char *azRowid[] = { "rowid", "_rowid_", "oid" }; in columnNames() local
353 for(i=0; i<sizeof(azRowid)/sizeof(azRowid[0]); i++){ in columnNames()
355 if( sqlite3_stricmp(az[j], azRowid[i])==0 ) break; in columnNames()
358 az[0] = sqlite3_mprintf("%s", azRowid[i]); in columnNames()
/sqlite-3.40.0/src/
H A Dshell.c.in4118 static char *azRowid[] = { "rowid", "_rowid_", "oid" }; local
4122 if( sqlite3_stricmp(azRowid[j],azCol[i])==0 ) break;
4125 /* At this point, we know that azRowid[j] is not the name of any
4126 ** ordinary column in the table. Verify that azRowid[j] is a valid
4129 rc = sqlite3_table_column_metadata(p->db,0,zTab,azRowid[j],0,0,0,0,0);
4130 if( rc==SQLITE_OK ) azCol[0] = azRowid[j];