Searched refs:zTail (Results 1 – 2 of 2) sorted by relevance
| /freebsd/contrib/sqlite3/ |
| H A D | shell.c | 25616 static void printSchemaLine(FILE *out, const char *z, const char *zTail){ in printSchemaLine() argument 25619 if( zTail==0 ) return; in printSchemaLine() 25620 if( zTail[0]==';' && (strstr(z, "/*")!=0 || strstr(z,"--")!=0) ){ in printSchemaLine() 25638 cli_printf(out, "CREATE TABLE IF NOT EXISTS %s%s", z+13, zTail); in printSchemaLine() 25640 cli_printf(out, "%s%s", z, zTail); in printSchemaLine() 29073 const char *zTail; in shell_dbtotxt_command() local 29103 zTail = "unk.db"; in shell_dbtotxt_command() 29107 zTail = strrchr(zFilename, '/'); in shell_dbtotxt_command() 29109 if( zTail==0 ) zTail = strrchr(zFilename, '\\'); in shell_dbtotxt_command() 29111 if( zTail==0 ){ in shell_dbtotxt_command() [all …]
|
| H A D | sqlite3.c | 20976 const char *zTail; /* All SQL text past the last semicolon parsed */ member 33426 zText =pParse->zTail; in sqlite3RecordErrorByteOffset() 113831 pNew->w.iOfst = (int)(pToken->z - pParse->zTail); 128900 const char *zTail; /* Pointer to the last "_" in zName */ local 128903 zTail = strrchr(zName, '_'); 128904 if( zTail==0 ) return 0; 128905 zCopy = sqlite3DbStrNDup(db, zName, (int)(zTail-zName)); 148456 sParse.zTail = &zSql[sParse.zTail-zSqlCopy]; 148459 sParse.zTail = &zSql[nBytes]; 148467 *pzTail = sParse.zTail; [all …]
|