Home
last modified time | relevance | path

Searched refs:zTail (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dshell.c25654 static void printSchemaLine(FILE *out, const char *z, const char *zTail){ in printSchemaLine() argument
25657 if( zTail==0 ) return; in printSchemaLine()
25658 if( zTail[0]==';' && (strstr(z, "/*")!=0 || strstr(z,"--")!=0) ){ in printSchemaLine()
25676 cli_printf(out, "CREATE TABLE IF NOT EXISTS %s%s", z+13, zTail); in printSchemaLine()
25678 cli_printf(out, "%s%s", z, zTail); in printSchemaLine()
29111 const char *zTail; in shell_dbtotxt_command() local
29141 zTail = "unk.db"; in shell_dbtotxt_command()
29145 zTail = strrchr(zFilename, '/'); in shell_dbtotxt_command()
29147 if( zTail==0 ) zTail = strrchr(zFilename, '\\'); in shell_dbtotxt_command()
29149 if( zTail==0 ){ in shell_dbtotxt_command()
[all …]
H A Dsqlite3.c20998 const char *zTail; /* All SQL text past the last semicolon parsed */ member
33456 zText =pParse->zTail; in sqlite3RecordErrorByteOffset()
114007 pNew->w.iOfst = (int)(pToken->z - pParse->zTail);
129108 const char *zTail; /* Pointer to the last "_" in zName */ local
129111 zTail = strrchr(zName, '_');
129112 if( zTail==0 ) return 0;
129113 zCopy = sqlite3DbStrNDup(db, zName, (int)(zTail-zName));
148677 sParse.zTail = &zSql[sParse.zTail-zSqlCopy];
148680 sParse.zTail = &zSql[nBytes];
148688 *pzTail = sParse.zTail;
[all …]