Home
last modified time | relevance | path

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

/titanic_41/usr/src/lib/libsqlite/src/
H A Dattach.c41 sqliteErrorMsg(pParse, "cannot attach auxiliary databases to an " in sqliteAttach()
47 sqliteErrorMsg(pParse, "too many attached databases - max %d", in sqliteAttach()
70 sqliteErrorMsg(pParse, "database %z is already in use", zName); in sqliteAttach()
95 sqliteErrorMsg(pParse, "unable to open database: %s", zFile); in sqliteAttach()
156 sqliteErrorMsg(pParse, "no such database: %T", pDbname); in sqliteDetach()
160 sqliteErrorMsg(pParse, "cannot detach database %T", pDbname); in sqliteDetach()
234 sqliteErrorMsg(pFix->pParse, in sqliteFixSrcList()
H A Dauth.c91 sqliteErrorMsg(pParse, "illegal return value (%d) from the " in sqliteAuthBadReturnCode()
153 sqliteErrorMsg(pParse, "access to %s.%s.%s is prohibited", in sqliteAuthRead()
156 sqliteErrorMsg(pParse, "access to %s.%s is prohibited", pTab->zName,zCol); in sqliteAuthRead()
185 sqliteErrorMsg(pParse, "not authorized"); in sqliteAuthCheck()
H A Dbuild.c137 sqliteErrorMsg(pParse, "no such table: %s.%s", zDbase, zName); in sqliteLocateTable()
139 sqliteErrorMsg(pParse, "table \"%s\" is not in database \"%s\"", in sqliteLocateTable()
142 sqliteErrorMsg(pParse, "no such table: %s", zName); in sqliteLocateTable()
480 sqliteErrorMsg(pParse, "unable to open a temporary database " in sqliteStartTable()
488 sqliteErrorMsg(pParse, "unable to get a write lock on " in sqliteStartTable()
505 sqliteErrorMsg(pParse, "table %T already exists", pName); in sqliteStartTable()
511 sqliteErrorMsg(pParse, "there is already an index named %s", zName); in sqliteStartTable()
570 sqliteErrorMsg(pParse, "duplicate column name: %s", z); in sqliteAddColumn()
689 sqliteErrorMsg(pParse, in sqliteAddPrimaryKey()
1080 sqliteErrorMsg(pParse, "view %s is circularly defined", pTable->zName); in sqliteViewGetColumnNames()
[all …]
H A Dtrigger.c83 sqliteErrorMsg(pParse, "triggers may not be added to auxiliary " in sqliteBeginTrigger()
91 sqliteErrorMsg(pParse, "trigger %T already exists", pName); in sqliteBeginTrigger()
95 sqliteErrorMsg(pParse, "cannot create trigger on system table"); in sqliteBeginTrigger()
100 sqliteErrorMsg(pParse, "cannot create %s trigger on view: %S", in sqliteBeginTrigger()
105 sqliteErrorMsg(pParse, "cannot create INSTEAD OF" in sqliteBeginTrigger()
411 sqliteErrorMsg(pParse, "no such trigger: %S", pName, 0); in sqliteDropTrigger()
432 sqliteErrorMsg(pParse, "triggers may not be removed from " in sqliteDropTriggerPtr()
H A Dselect.c131 sqliteErrorMsg(pParse, in sqliteJoinType()
228 sqliteErrorMsg(pParse, "a NATURAL join may not have " in sqliteProcessJoin()
243 sqliteErrorMsg(pParse, "cannot have both ON and USING " in sqliteProcessJoin()
276 sqliteErrorMsg(pParse, "cannot join using column %s - column " in sqliteProcessJoin()
1024 sqliteErrorMsg(pParse, "no such table: %s", zTName); in fillInColumnList()
1026 sqliteErrorMsg(pParse, "no tables specified"); in fillInColumnList()
1120 sqliteErrorMsg(pParse, in matchOrderbyToColumn()
1152 sqliteErrorMsg(pParse, in matchOrderbyToColumn()
1309 sqliteErrorMsg(pParse,"ORDER BY clause should come after %s not before", in multiSelect()
1314 sqliteErrorMsg(pParse,"LIMIT clause should come after %s not before", in multiSelect()
[all …]
H A Ddelete.c46 sqliteErrorMsg(pParse, "table %s may not be modified", pTab->zName); in sqliteIsReadOnly()
50 sqliteErrorMsg(pParse, "cannot modify %s because it is a view",pTab->zName); in sqliteIsReadOnly()
H A Dinsert.c263 sqliteErrorMsg(pParse, in sqliteInsert()
269 sqliteErrorMsg(pParse, "%d values for %d columns", nColumn, pColumn->nId); in sqliteInsert()
302 sqliteErrorMsg(pParse, "table %S has no column named %s", in sqliteInsert()
H A Dexpr.c583 sqliteErrorMsg(pParse, zErr, z); in lookupName()
714 sqliteErrorMsg(pParse, in sqliteExprResolveIds()
855 sqliteErrorMsg(pParse, "misuse of aggregate function %.*s()", nId, zId); in sqliteExprCheck()
859 sqliteErrorMsg(pParse, "no such function: %.*s", nId, zId); in sqliteExprCheck()
862 sqliteErrorMsg(pParse,"wrong number of arguments to function %.*s()", in sqliteExprCheck()
1244 sqliteErrorMsg(pParse, in sqliteExprCode()
H A Dupdate.c141 sqliteErrorMsg(pParse, "no such column: %s", pChanges->a[i].zName); in sqliteUpdate()
H A Dpragma.c100 sqliteErrorMsg(pParse, "temporary storage cannot be changed " in changeTempStorage()
H A DsqliteInt.h1128 void sqliteErrorMsg(Parse*, const char*, ...);
H A Dutil.c421 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.c417 sqliteErrorMsg(pParse, "WHERE clause too complex - no more " in sqliteWhereBegin()