Lines Matching refs:zFile
2472 char *zFile; /* The file from which to extract data */ in DbObjCmd() local
2508 zFile = Tcl_GetStringFromObj(objv[4], 0); in DbObjCmd()
2565 in = fopen(zFile, "rb"); in DbObjCmd()
2567 Tcl_AppendResult(interp, "Error: cannot open file: ", zFile, (char*)0); in DbObjCmd()
2595 int nErr = strlen30(zFile) + 200; in DbObjCmd()
2600 zFile, lineno, nCol, i+1); in DbObjCmd()
3765 const char *zFile = 0; in DbMain() local
3804 if( zFile!=0 ) return sqliteCmdUsage(interp, objv); in DbMain()
3805 zFile = zArg; in DbMain()
3878 if( zFile==0 ) zFile = ""; in DbMain()
3880 zFile = Tcl_TranslateFileName(interp, zFile, &translatedFilename); in DbMain()
3882 rc = sqlite3_open_v2(zFile, &p->db, flags, zVfs); in DbMain()