Lines Matching refs:zFile
2452 char *zFile; /* The file from which to extract data */ in DbObjCmd() local
2488 zFile = Tcl_GetStringFromObj(objv[4], 0); in DbObjCmd()
2545 in = fopen(zFile, "rb"); in DbObjCmd()
2547 Tcl_AppendResult(interp, "Error: cannot open file: ", zFile, (char*)0); in DbObjCmd()
2575 int nErr = strlen30(zFile) + 200; in DbObjCmd()
2580 zFile, lineno, nCol, i+1); in DbObjCmd()
3731 const char *zFile = 0; in DbMain() local
3770 if( zFile!=0 ) return sqliteCmdUsage(interp, objv); in DbMain()
3771 zFile = zArg; in DbMain()
3844 if( zFile==0 ) zFile = ""; in DbMain()
3846 zFile = Tcl_TranslateFileName(interp, zFile, &translatedFilename); in DbMain()
3848 rc = sqlite3_open_v2(zFile, &p->db, flags, zVfs); in DbMain()