Lines Matching full:zdot
2117 + char *zDot; /* Any dot found in "db.table" backing. */2143 + zDot = strchr(argv[3], '.');2144 + if( !zDot ){2147 + }else if( zDot>argv[3] && zDot[1]!='\0' ){2148 + pRecover->zDb = sqlite3_strndup(argv[3], zDot - argv[3]);2149 + pRecover->zTable = sqlite3_strdup(zDot + 1);