Lines Matching refs:zFile
2428 char *zFile; /* The file from which to extract data */ in DbObjCmd() local
2464 zFile = Tcl_GetStringFromObj(objv[4], 0); in DbObjCmd()
2521 in = fopen(zFile, "rb"); in DbObjCmd()
2523 Tcl_AppendResult(interp, "Error: cannot open file: ", zFile, (char*)0); in DbObjCmd()
2551 int nErr = strlen30(zFile) + 200; in DbObjCmd()
2556 zFile, lineno, nCol, i+1); in DbObjCmd()
3704 const char *zFile = 0; in DbMain() local
3743 if( zFile!=0 ) return sqliteCmdUsage(interp, objv); in DbMain()
3744 zFile = zArg; in DbMain()
3817 if( zFile==0 ) zFile = ""; in DbMain()
3819 zFile = Tcl_TranslateFileName(interp, zFile, &translatedFilename); in DbMain()
3821 rc = sqlite3_open_v2(zFile, &p->db, flags, zVfs); in DbMain()