Searched refs:zTail (Results 1 – 2 of 2) sorted by relevance
| /src/contrib/sqlite3/ |
| H A D | shell.c | 22677 static void printSchemaLine(FILE *out, const char *z, const char *zTail){ in printSchemaLine() argument 22680 if( zTail==0 ) return; in printSchemaLine() 22681 if( zTail[0]==';' && (strstr(z, "/*")!=0 || strstr(z,"--")!=0) ){ in printSchemaLine() 22699 sqlite3_fprintf(out, "CREATE TABLE IF NOT EXISTS %s%s", z+13, zTail); in printSchemaLine() 22701 sqlite3_fprintf(out, "%s%s", z, zTail); in printSchemaLine() 22705 static void printSchemaLineN(FILE *out, char *z, int n, const char *zTail){ in printSchemaLineN() argument 22708 printSchemaLine(out, z, zTail); in printSchemaLineN() 27049 const char *zTail; in shell_dbtotxt_command() local 27079 zTail = "unk.db"; in shell_dbtotxt_command() 27083 zTail = strrchr(zFilename, '/'); in shell_dbtotxt_command() [all …]
|
| H A D | sqlite3.c | 20354 const char *zTail; /* All SQL text past the last semicolon parsed */ member 32616 zText =pParse->zTail; in sqlite3RecordErrorByteOffset() 111523 pNew->w.iOfst = (int)(pToken->z - pParse->zTail); 125563 char *zTail; /* Pointer to the last "_" in zName */ 125565 zTail = strrchr(zName, '_'); 125566 if( zTail==0 ) return 0; 125567 *zTail = 0; 125569 *zTail = '_'; 144525 sParse.zTail = &zSql[sParse.zTail-zSqlCopy]; 144528 sParse.zTail = &zSql[nBytes]; [all …]
|