/external/chromium_org/third_party/sqlite/src/src/ |
auth.c | 88 sqlite3ErrorMsg(pParse, "authorizer malfunction"); 114 sqlite3ErrorMsg(pParse, "access to %s.%s.%s is prohibited",zDb,zTab,zCol); 116 sqlite3ErrorMsg(pParse, "access to %s.%s is prohibited", zTab, zCol); 213 sqlite3ErrorMsg(pParse, "not authorized");
|
resolve.c | 310 sqlite3ErrorMsg(pParse, "misuse of aliased aggregate %s", zAs); 354 sqlite3ErrorMsg(pParse, "%s: %s.%s.%s", zErr, zDb, zTab, zCol); 356 sqlite3ErrorMsg(pParse, "%s: %s.%s", zErr, zTab, zCol); 358 sqlite3ErrorMsg(pParse, "%s: %s", zErr, zCol); 545 sqlite3ErrorMsg(pParse, "not authorized to use function: %s", 555 sqlite3ErrorMsg(pParse, "misuse of aggregate function %.*s()", nId,zId); 559 sqlite3ErrorMsg(pParse, "no such function: %.*s", nId, zId); 562 sqlite3ErrorMsg(pParse,"wrong number of arguments to function %.*s()", 588 sqlite3ErrorMsg(pParse,"subqueries prohibited in CHECK constraints"); 602 sqlite3ErrorMsg(pParse,"parameters prohibited in CHECK constraints") [all...] |
alter.c | 383 sqlite3ErrorMsg(pParse, "table %s may not be altered", zName); 431 sqlite3ErrorMsg(pParse, 448 sqlite3ErrorMsg(pParse, "view %s may not be altered", pTab->zName); 668 sqlite3ErrorMsg(pParse, "Cannot add a PRIMARY KEY column"); 672 sqlite3ErrorMsg(pParse, "Cannot add a UNIQUE column"); 676 sqlite3ErrorMsg(pParse, 681 sqlite3ErrorMsg(pParse, 696 sqlite3ErrorMsg(pParse, "Cannot add a column with non-constant default"); 765 sqlite3ErrorMsg(pParse, "virtual tables may not be altered"); 772 sqlite3ErrorMsg(pParse, "Cannot add a column to a view") [all...] |
util.c | 150 void sqlite3ErrorMsg(Parse *pParse, const char *zFormat, ...){
|
build.c | 315 sqlite3ErrorMsg(pParse, "%s: %s.%s", zMsg, zDbase, zName); 317 sqlite3ErrorMsg(pParse, "%s: %s", zMsg, zName); 671 sqlite3ErrorMsg(pParse, "corrupt database"); 678 sqlite3ErrorMsg(pParse, "unknown database %T", pName1); 701 sqlite3ErrorMsg(pParse, "object name reserved for internal use: %s", zName); 761 sqlite3ErrorMsg(pParse, "temporary table name must be unqualified"); 815 sqlite3ErrorMsg(pParse, "table %T already exists", pName); 823 sqlite3ErrorMsg(pParse, "there is already an index named %s", zName); 955 sqlite3ErrorMsg(pParse, "too many columns on %s", p->zName); 963 sqlite3ErrorMsg(pParse, "duplicate column name: %s", z) [all...] |
trigger.c | 108 sqlite3ErrorMsg(pParse, "temporary trigger may not have qualified name"); 159 sqlite3ErrorMsg(pParse, "cannot create triggers on virtual tables"); 173 sqlite3ErrorMsg(pParse, "trigger %T already exists", pName); 183 sqlite3ErrorMsg(pParse, "cannot create trigger on system table"); 192 sqlite3ErrorMsg(pParse, "cannot create %s trigger on view: %S", 197 sqlite3ErrorMsg(pParse, "cannot create INSTEAD OF" 504 sqlite3ErrorMsg(pParse, "no such trigger: %S", pName, 0); [all...] |
delete.c | 69 sqlite3ErrorMsg(pParse, "table %s may not be modified", pTab->zName); 75 sqlite3ErrorMsg(pParse,"cannot modify %s because it is a view",pTab->zName); 150 sqlite3ErrorMsg(pParse, "ORDER BY without LIMIT on %s", zStmtType);
|
attach.c | 42 sqlite3ErrorMsg(pName->pParse, "invalid name: \"%s\"", pExpr->u.zToken); 456 sqlite3ErrorMsg(pFix->pParse,
|
vdbeblob.c | 179 sqlite3ErrorMsg(pParse, "cannot open virtual table: %s", zTable); 184 sqlite3ErrorMsg(pParse, "cannot open view: %s", zTable);
|
pragma.c | 112 sqlite3ErrorMsg(pParse, "temporary storage cannot be changed " 749 sqlite3ErrorMsg(pParse, "not a writable directory"); 812 sqlite3ErrorMsg(pParse, "failed to set lock proxy file"); 834 sqlite3ErrorMsg(pParse, [all...] |
select.c | 168 sqlite3ErrorMsg(pParse, "unknown or unsupported join type: " 173 sqlite3ErrorMsg(pParse, 342 sqlite3ErrorMsg(pParse, "a NATURAL join may not have " 362 sqlite3ErrorMsg(pParse, "cannot have both ON and USING " 396 sqlite3ErrorMsg(pParse, "cannot join using column %s - column " 508 sqlite3ErrorMsg(pParse, "only a single result allowed for " [all...] |
callback.c | 125 sqlite3ErrorMsg(pParse, "no such collation sequence: %s", zName);
|
tokenize.c | 432 sqlite3ErrorMsg(pParse, "interrupt");
|
parse.y | 35 sqlite3ErrorMsg(pParse, "near \"%T\": syntax error", &TOKEN); 40 sqlite3ErrorMsg(pParse, "parser stack overflow"); 769 sqlite3ErrorMsg(pParse, "near \"%T\": syntax error", &X); 795 sqlite3ErrorMsg(pParse, "too many arguments on function %T", &X); [all...] |
insert.c | 690 sqlite3ErrorMsg(pParse, 696 sqlite3ErrorMsg(pParse, "%d values for %d columns", nColumn, pColumn->nId); 729 sqlite3ErrorMsg(pParse, "table %S has no column named %s", [all...] |
vtab.c | 553 sqlite3ErrorMsg(pParse, "no such module: %s", zModule); 559 sqlite3ErrorMsg(pParse, "%s", zErr);
|
expr.c | 271 sqlite3ErrorMsg(pParse, 569 sqlite3ErrorMsg(pParse, "variable number must be between ?1 and ?%d", 607 sqlite3ErrorMsg(pParse, "too many SQL variables"); [all...] |
where.c | [all...] |
update.c | 213 sqlite3ErrorMsg(pParse, "no such column: %s", pChanges->a[i].zName);
|
fkey.c | 278 sqlite3ErrorMsg(pParse, "foreign key mismatch"); [all...] |
sqliteInt.h | [all...] |
/external/chromium_org/third_party/sqlite/amalgamation/ |
sqlite3.c | [all...] |