Home
last modified time | relevance | path

Searched refs:sqliteErrorMsg (Results 1 – 14 of 14) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dattach.c38 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 Dauth.c88 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 Dbuild.c134 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 Dtrigger.c80 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 Dselect.c127 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 Ddelete.c43 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 Dexpr.c580 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 Dinsert.c260 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 Dupdate.c138 sqliteErrorMsg(pParse, "no such column: %s", pChanges->a[i].zName); in sqliteUpdate()
H A Dpragma.c97 sqliteErrorMsg(pParse, "temporary storage cannot be changed " in changeTempStorage()
H A DsqliteInt.h1125 void sqliteErrorMsg(Parse*, const char*, ...);
H A Dutil.c418 void sqliteErrorMsg(Parse *pParse, const char *zFormat, ...){ in sqliteErrorMsg() function
H A Dparse.y26 sqliteErrorMsg(pParse, "near \"%T\": syntax error", &TOKEN);
28 sqliteErrorMsg(pParse, "incomplete SQL statement");
H A Dwhere.c414 sqliteErrorMsg(pParse, "WHERE clause too complex - no more " in sqliteWhereBegin()