MCPcopy Create free account
hub / github.com/GaijinEntertainment/daScript / fsdirSetErrmsg

Function fsdirSetErrmsg

modules/dasSQLITE/sqlite/shell.c:6139–6144  ·  view source on GitHub ↗

** Set the error message for the virtual table associated with cursor ** pCur to the results of vprintf(zFmt, ...). */

Source from the content-addressed store, hash-verified

6137** pCur to the results of vprintf(zFmt, ...).
6138*/
6139static void fsdirSetErrmsg(fsdir_cursor *pCur, const char *zFmt, ...){
6140 va_list ap;
6141 va_start(ap, zFmt);
6142 pCur->base.pVtab->zErrMsg = sqlite3_vmprintf(zFmt, ap);
6143 va_end(ap);
6144}
6145
6146
6147/*

Callers 2

fsdirNextFunction · 0.85
fsdirFilterFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected