/illumos-gate/usr/src/lib/libsqlite/src/ |
H A D | attach.c | 38 sqliteErrorMsg(pParse, "cannot attach auxiliary databases to an " in sqliteAttach() 44 sqliteErrorMsg(pParse, "too many attached databases - max %d", in sqliteAttach() 67 sqliteErrorMsg(pParse, "database %z is already in use", zName); in sqliteAttach() 92 sqliteErrorMsg(pParse, "unable to open database: %s", zFile); in sqliteAttach() 153 sqliteErrorMsg(pParse, "no such database: %T", pDbname); in sqliteDetach() 157 sqliteErrorMsg(pParse, "cannot detach database %T", pDbname); in sqliteDetach() 231 sqliteErrorMsg(pFix->pParse, in sqliteFixSrcList()
|
H A D | auth.c | 88 sqliteErrorMsg(pParse, "illegal return value (%d) from the " in sqliteAuthBadReturnCode() 150 sqliteErrorMsg(pParse, "access to %s.%s.%s is prohibited", in sqliteAuthRead() 153 sqliteErrorMsg(pParse, "access to %s.%s is prohibited", pTab->zName,zCol); in sqliteAuthRead() 182 sqliteErrorMsg(pParse, "not authorized"); in sqliteAuthCheck()
|
H A D | build.c | 134 sqliteErrorMsg(pParse, "no such table: %s.%s", zDbase, zName); in sqliteLocateTable() 136 sqliteErrorMsg(pParse, "table \"%s\" is not in database \"%s\"", in sqliteLocateTable() 139 sqliteErrorMsg(pParse, "no such table: %s", zName); in sqliteLocateTable() 477 sqliteErrorMsg(pParse, "unable to open a temporary database " in sqliteStartTable() 485 sqliteErrorMsg(pParse, "unable to get a write lock on " in sqliteStartTable() 502 sqliteErrorMsg(pParse, "table %T already exists", pName); in sqliteStartTable() 508 sqliteErrorMsg(pParse, "there is already an index named %s", zName); in sqliteStartTable() 567 sqliteErrorMsg(pParse, "duplicate column name: %s", z); in sqliteAddColumn() 686 sqliteErrorMsg(pParse, in sqliteAddPrimaryKey() 1077 sqliteErrorMsg(pParse, "view %s is circularly defined", pTable->zName); in sqliteViewGetColumnNames() [all …]
|
H A D | trigger.c | 80 sqliteErrorMsg(pParse, "triggers may not be added to auxiliary " in sqliteBeginTrigger() 88 sqliteErrorMsg(pParse, "trigger %T already exists", pName); in sqliteBeginTrigger() 92 sqliteErrorMsg(pParse, "cannot create trigger on system table"); in sqliteBeginTrigger() 97 sqliteErrorMsg(pParse, "cannot create %s trigger on view: %S", in sqliteBeginTrigger() 102 sqliteErrorMsg(pParse, "cannot create INSTEAD OF" in sqliteBeginTrigger() 408 sqliteErrorMsg(pParse, "no such trigger: %S", pName, 0); in sqliteDropTrigger() 429 sqliteErrorMsg(pParse, "triggers may not be removed from " in sqliteDropTriggerPtr()
|
H A D | select.c | 127 sqliteErrorMsg(pParse, in sqliteJoinType() 224 sqliteErrorMsg(pParse, "a NATURAL join may not have " in sqliteProcessJoin() 239 sqliteErrorMsg(pParse, "cannot have both ON and USING " in sqliteProcessJoin() 272 sqliteErrorMsg(pParse, "cannot join using column %s - column " in sqliteProcessJoin() 1020 sqliteErrorMsg(pParse, "no such table: %s", zTName); in fillInColumnList() 1022 sqliteErrorMsg(pParse, "no tables specified"); in fillInColumnList() 1116 sqliteErrorMsg(pParse, in matchOrderbyToColumn() 1148 sqliteErrorMsg(pParse, in matchOrderbyToColumn() 1305 sqliteErrorMsg(pParse,"ORDER BY clause should come after %s not before", in multiSelect() 1310 sqliteErrorMsg(pParse,"LIMIT clause should come after %s not before", in multiSelect() [all …]
|
H A D | delete.c | 43 sqliteErrorMsg(pParse, "table %s may not be modified", pTab->zName); in sqliteIsReadOnly() 47 sqliteErrorMsg(pParse, "cannot modify %s because it is a view",pTab->zName); in sqliteIsReadOnly()
|
H A D | expr.c | 580 sqliteErrorMsg(pParse, zErr, z); in lookupName() 712 sqliteErrorMsg(pParse, in sqliteExprResolveIds() 853 sqliteErrorMsg(pParse, "misuse of aggregate function %.*s()", nId, zId); in sqliteExprCheck() 857 sqliteErrorMsg(pParse, "no such function: %.*s", nId, zId); in sqliteExprCheck() 860 sqliteErrorMsg(pParse,"wrong number of arguments to function %.*s()", in sqliteExprCheck() 1244 sqliteErrorMsg(pParse, in sqliteExprCode()
|
H A D | insert.c | 260 sqliteErrorMsg(pParse, in sqliteInsert() 266 sqliteErrorMsg(pParse, "%d values for %d columns", nColumn, pColumn->nId); in sqliteInsert() 299 sqliteErrorMsg(pParse, "table %S has no column named %s", in sqliteInsert()
|
H A D | update.c | 138 sqliteErrorMsg(pParse, "no such column: %s", pChanges->a[i].zName); in sqliteUpdate()
|
H A D | pragma.c | 97 sqliteErrorMsg(pParse, "temporary storage cannot be changed " in changeTempStorage()
|
H A D | sqliteInt.h | 1125 void sqliteErrorMsg(Parse*, const char*, ...);
|
H A D | util.c | 418 void sqliteErrorMsg(Parse *pParse, const char *zFormat, ...){ in sqliteErrorMsg() function
|
H A D | parse.y | 26 sqliteErrorMsg(pParse, "near \"%T\": syntax error", &TOKEN); 28 sqliteErrorMsg(pParse, "incomplete SQL statement");
|
H A D | where.c | 414 sqliteErrorMsg(pParse, "WHERE clause too complex - no more " in sqliteWhereBegin()
|