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.c139 sqliteErrorMsg(pParse, "no such table: %s", zName); in sqliteLocateTable()
502 sqliteErrorMsg(pParse, "table %T already exists", pName); in sqliteStartTable()
567 sqliteErrorMsg(pParse, "duplicate column name: %s", z); in sqliteAddColumn()
686 sqliteErrorMsg(pParse, in sqliteAddPrimaryKey()
1166 sqliteErrorMsg(pParse, "no such table: %T", pTok); in sqliteTableFromToken()
1369 sqliteErrorMsg(pParse, "foreign key on %s" in sqliteCreateForeignKey()
1376 sqliteErrorMsg(pParse, in sqliteCreateForeignKey()
1414 sqliteErrorMsg(pParse, in sqliteCreateForeignKey()
1519 sqliteErrorMsg(pParse, "views may not be indexed"); in sqliteCreateIndex()
1766 sqliteErrorMsg(pParse, "no such index: %S", pName, 0); in sqliteDropIndex()
[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()
1022 sqliteErrorMsg(pParse, "no tables specified"); in fillInColumnList()
1116 sqliteErrorMsg(pParse, in matchOrderbyToColumn()
1148 sqliteErrorMsg(pParse, in matchOrderbyToColumn()
2074 sqliteErrorMsg(pParse, "only a single result allowed for " in sqliteSelect()
2140 sqliteErrorMsg(pParse, in sqliteSelect()
2144 sqliteErrorMsg(pParse, in sqliteSelect()
2168 sqliteErrorMsg(pParse, in sqliteSelect()
[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()