Home
last modified time | relevance | path

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

/netbsd-src/external/public-domain/sqlite/dist/
H A Dshell.c25566 char *zFullTabName; /* Table name with schema if applicable */ in do_meta_command() local
25701 zFullTabName = sqlite3_mprintf("\"%w\".\"%w\"", zSchema, zTable); in do_meta_command()
25703 zFullTabName = sqlite3_mprintf("\"%w\"", zTable); in do_meta_command()
25705 zSql = sqlite3_mprintf("SELECT * FROM %s", zFullTabName); in do_meta_command()
25706 if( zSql==0 || zFullTabName==0 ){ in do_meta_command()
25717 zCreate = sqlite3_mprintf("CREATE TABLE %s", zFullTabName); in do_meta_command()
25735 sqlite3_free(zFullTabName); in do_meta_command()
25768 sqlite3_snprintf(nByte+20, zSql, "INSERT INTO %s VALUES(?", zFullTabName); in do_meta_command()
25786 sqlite3_free(zFullTabName); in do_meta_command()