Lines Matching refs:sqlite3ErrorMsg

12255 SQLITE_PRIVATE void sqlite3ErrorMsg(Parse*, const char*, ...);
21788 SQLITE_PRIVATE void sqlite3ErrorMsg(Parse *pParse, const char *zFormat, ...){ in sqlite3ErrorMsg() function
72974 sqlite3ErrorMsg(pParse, "cannot open virtual table: %s", zTable);
72978 sqlite3ErrorMsg(pParse, "cannot open table without rowid: %s", zTable);
72983 sqlite3ErrorMsg(pParse, "cannot open view: %s", zTable);
75403 sqlite3ErrorMsg(pParse, "misuse of aliased aggregate %s", zAs);
75448 sqlite3ErrorMsg(pParse, "%s: %s.%s.%s", zErr, zDb, zTab, zCol);
75450 sqlite3ErrorMsg(pParse, "%s: %s.%s", zErr, zTab, zCol);
75452 sqlite3ErrorMsg(pParse, "%s: %s", zErr, zCol);
75534 sqlite3ErrorMsg(pParse, "%s prohibited in partial index WHERE clauses",
75549 sqlite3ErrorMsg(pParse,"%s prohibited in CHECK constraints", zMsg);
75685 sqlite3ErrorMsg(pParse, "second argument to likelihood() must be a "
75703 sqlite3ErrorMsg(pParse, "not authorized to use function: %s",
75714 sqlite3ErrorMsg(pParse, "misuse of aggregate function %.*s()", nId,zId);
75718 sqlite3ErrorMsg(pParse, "no such function: %.*s", nId, zId);
75721 sqlite3ErrorMsg(pParse,"wrong number of arguments to function %.*s()",
75874 sqlite3ErrorMsg(pParse,
75909 sqlite3ErrorMsg(pParse, "too many terms in ORDER BY clause");
75972 sqlite3ErrorMsg(pParse, "%r ORDER BY term does not match any "
76004 sqlite3ErrorMsg(pParse, "too many terms in %s BY clause", zType);
76208 sqlite3ErrorMsg(pParse, "a GROUP BY clause is required before HAVING");
76253 sqlite3ErrorMsg(pParse, "aggregate functions are not allowed in "
76735 sqlite3ErrorMsg(pParse,
77072 sqlite3ErrorMsg(pParse, "variable number must be between ?1 and ?%d",
77109 sqlite3ErrorMsg(pParse, "too many SQL variables");
77621 sqlite3ErrorMsg(pParse, "too many columns in %s", zObject);
78537 sqlite3ErrorMsg(pParse, "oversized integer: %s%s", negFlag ? "-" : "", z);
79111 sqlite3ErrorMsg(pParse, "misuse of aggregate: %s()", pExpr->u.zToken);
79140 sqlite3ErrorMsg(pParse, "unknown function: %.*s()", nId, zId);
79453 sqlite3ErrorMsg(pParse,
81102 sqlite3ErrorMsg(pParse, "table %s may not be altered", zName);
81150 sqlite3ErrorMsg(pParse,
81167 sqlite3ErrorMsg(pParse, "view %s may not be altered", pTab->zName);
81387 sqlite3ErrorMsg(pParse, "Cannot add a PRIMARY KEY column");
81391 sqlite3ErrorMsg(pParse, "Cannot add a UNIQUE column");
81395 sqlite3ErrorMsg(pParse,
81400 sqlite3ErrorMsg(pParse,
81415 sqlite3ErrorMsg(pParse, "Cannot add a column with non-constant default");
81484 sqlite3ErrorMsg(pParse, "virtual tables may not be altered");
81491 sqlite3ErrorMsg(pParse, "Cannot add a column to a view");
83777 sqlite3ErrorMsg(pFix->pParse,
83836 sqlite3ErrorMsg(pFix->pParse, "%s cannot use variables", pFix->zType);
83978 sqlite3ErrorMsg(pParse, "authorizer malfunction");
84004 sqlite3ErrorMsg(pParse, "access to %s.%s.%s is prohibited",zDb,zTab,zCol);
84006 sqlite3ErrorMsg(pParse, "access to %s.%s is prohibited", zTab, zCol);
84103 sqlite3ErrorMsg(pParse, "not authorized");
84459 sqlite3ErrorMsg(pParse, "%s: %s.%s", zMsg, zDbase, zName);
84461 sqlite3ErrorMsg(pParse, "%s: %s", zMsg, zName);
84860 sqlite3ErrorMsg(pParse, "corrupt database");
84867 sqlite3ErrorMsg(pParse, "unknown database %T", pName1);
84890 sqlite3ErrorMsg(pParse, "object name reserved for internal use: %s", zName);
84971 sqlite3ErrorMsg(pParse, "temporary table name must be unqualified");
85025 sqlite3ErrorMsg(pParse, "table %T already exists", pName);
85033 sqlite3ErrorMsg(pParse, "there is already an index named %s", zName);
85165 sqlite3ErrorMsg(pParse, "too many columns on %s", p->zName);
85173 sqlite3ErrorMsg(pParse, "duplicate column name: %s", z);
85339 sqlite3ErrorMsg(pParse, "default value of column [%s] is not constant",
85387 sqlite3ErrorMsg(pParse,
85420 sqlite3ErrorMsg(pParse, "AUTOINCREMENT is only allowed on an "
85918 sqlite3ErrorMsg(pParse,
85923 sqlite3ErrorMsg(pParse, "PRIMARY KEY missing on table %s", p->zName);
86122 sqlite3ErrorMsg(pParse, "parameters are not allowed in views");
86219 sqlite3ErrorMsg(pParse, "view %s is circularly defined", pTable->zName);
86586 sqlite3ErrorMsg(pParse, "table %s may not be dropped", pTab->zName);
86595 sqlite3ErrorMsg(pParse, "use DROP TABLE to delete table %s", pTab->zName);
86599 sqlite3ErrorMsg(pParse, "use DROP VIEW to delete view %s", pTab->zName);
86658 sqlite3ErrorMsg(pParse, "foreign key on %s"
86665 sqlite3ErrorMsg(pParse,
86703 sqlite3ErrorMsg(pParse,
86983 sqlite3ErrorMsg(pParse,
87002 sqlite3ErrorMsg(pParse, "table %s may not be indexed", pTab->zName);
87007 sqlite3ErrorMsg(pParse, "views may not be indexed");
87013 sqlite3ErrorMsg(pParse, "virtual tables may not be indexed");
87040 sqlite3ErrorMsg(pParse, "there is already a table named %s", zName);
87046 sqlite3ErrorMsg(pParse, "index %s already exists", zName);
87157 sqlite3ErrorMsg(pParse, "table %s has no column named %s",
87254 sqlite3ErrorMsg(pParse,
87441 sqlite3ErrorMsg(pParse, "no such index: %S", pName, 0);
87449 sqlite3ErrorMsg(pParse, "index associated with UNIQUE "
87783 sqlite3ErrorMsg(pParse, "a JOIN clause is required before %s",
87953 sqlite3ErrorMsg(pParse, "unable to open a temporary database "
88292 sqlite3ErrorMsg(pParse, "unable to identify the object to be reindexed");
88366 sqlite3ErrorMsg(pParse, "duplicate WITH table name: %s", zName);
88520 sqlite3ErrorMsg(pParse, "no such collation sequence: %s", zName);
88961 sqlite3ErrorMsg(pParse, "table %s may not be modified", pTab->zName);
88967 sqlite3ErrorMsg(pParse,"cannot modify %s because it is a view",pTab->zName);
89041 sqlite3ErrorMsg(pParse, "ORDER BY without LIMIT on %s", zStmtType);
91745 sqlite3ErrorMsg(pParse,
93593 sqlite3ErrorMsg(pParse,
93599 sqlite3ErrorMsg(pParse, "%d values for %d columns", nColumn, pColumn->nId);
93632 sqlite3ErrorMsg(pParse, "table %S has no column named %s",
96877 sqlite3ErrorMsg(pParse, "temporary storage cannot be changed "
97084 sqlite3ErrorMsg(pParse, "%s", aFcntl[0]);
97552 sqlite3ErrorMsg(pParse, "not a writable directory");
97602 sqlite3ErrorMsg(pParse, "not a writable directory");
97654 sqlite3ErrorMsg(pParse, "failed to set lock proxy file");
97676 sqlite3ErrorMsg(pParse,
98328 sqlite3ErrorMsg(pParse, "unsupported encoding: %s", zRight);
99673 sqlite3ErrorMsg(pParse, "unknown or unsupported join type: "
99678 sqlite3ErrorMsg(pParse,
99847 sqlite3ErrorMsg(pParse, "a NATURAL join may not have "
99867 sqlite3ErrorMsg(pParse, "cannot have both ON and USING "
99901 sqlite3ErrorMsg(pParse, "cannot join using column %s - column "
100019 sqlite3ErrorMsg(pParse, "only a single result allowed for "
101490 sqlite3ErrorMsg(pParse,"ORDER BY clause should come after %s not before",
101496 sqlite3ErrorMsg(pParse,"LIMIT clause should come after %s not before",
101520 sqlite3ErrorMsg(pParse, "all VALUES must have the same number of terms");
101522 sqlite3ErrorMsg(pParse, "SELECTs to the left and right of %s"
103076 sqlite3ErrorMsg(pParse, "no such index: %s", zIndex, 0);
103239 sqlite3ErrorMsg(pParse, pCte->zErr, pCte->zName);
103277 sqlite3ErrorMsg(
103293 sqlite3ErrorMsg(pParse, "table %s has %d values for %d columns",
103433 sqlite3ErrorMsg(pParse, "too many references to \"%s\": max 65535",
103617 sqlite3ErrorMsg(pParse, "no such table: %s", zTName);
103619 sqlite3ErrorMsg(pParse, "no tables specified");
103629 sqlite3ErrorMsg(pParse, "too many columns in result set");
103799 sqlite3ErrorMsg(pParse, "DISTINCT aggregates must have exactly one "
104153 sqlite3ErrorMsg(pParse, "too many terms in compound SELECT");
105145 sqlite3ErrorMsg(pParse, "temporary trigger may not have qualified name");
105209 sqlite3ErrorMsg(pParse, "cannot create triggers on virtual tables");
105223 sqlite3ErrorMsg(pParse, "trigger %T already exists", pName);
105233 sqlite3ErrorMsg(pParse, "cannot create trigger on system table");
105242 sqlite3ErrorMsg(pParse, "cannot create %s trigger on view: %S",
105247 sqlite3ErrorMsg(pParse, "cannot create INSTEAD OF"
105551 sqlite3ErrorMsg(pParse, "no such trigger: %S", pName, 0);
106412 sqlite3ErrorMsg(pParse, "no such column: %s", pChanges->a[i].zName);
107908 sqlite3ErrorMsg(pParse, "no such module: %s", zModule);
107914 sqlite3ErrorMsg(pParse, "%s", zErr);
110652 sqlite3ErrorMsg(pParse, "out of memory");
110733 sqlite3ErrorMsg(pParse, "%s", sqlite3ErrStr(rc));
110735 sqlite3ErrorMsg(pParse, "%s", pVtab->zErrMsg);
110743 sqlite3ErrorMsg(pParse,
113309 sqlite3ErrorMsg(pParse, "%s.xBestIndex() malfunction", pTab->zName);
114003 sqlite3ErrorMsg(pParse, "no query solution");
114259 sqlite3ErrorMsg(pParse, "at most %d tables in a join", BMS);
116426 sqlite3ErrorMsg(pParse, "parser stack overflow");
116963sqlite3ErrorMsg(pParse, "unknown table option: %.*s", yymsp[0].minor.yy0.n, yymsp[0].minor.yy0.z);
117485 sqlite3ErrorMsg(pParse, "near \"%T\": syntax error", &yymsp[0].minor.yy0);
117514 sqlite3ErrorMsg(pParse, "too many arguments on function %T", &yymsp[-4].minor.yy0);
117851 sqlite3ErrorMsg(pParse,
117858 sqlite3ErrorMsg(pParse,
117865 sqlite3ErrorMsg(pParse,
118086 sqlite3ErrorMsg(pParse, "near \"%T\": syntax error", &TOKEN);
118978 sqlite3ErrorMsg(pParse, "interrupt");