Lines Matching full:zfile
2494 char *zFile = azArg[1]; /* The file from which to extract data */
2550 in = fopen(zFile, "rb");
2552 fprintf(stderr, "Error: cannot open \"%s\"\n", zFile);
2584 zFile, lineno, nCol, i+1);
2674 const char *zFile, *zProc;
2676 zFile = azArg[1];
2679 rc = sqlite3_load_extension(p->db, zFile, zProc, &zErrMsg);
2689 const char *zFile = azArg[1];
2694 if( strcmp(zFile,"stdout")==0 ){
2696 }else if( strcmp(zFile, "stderr")==0 ){
2698 }else if( strcmp(zFile, "off")==0 ){
2701 p->pLog = fopen(zFile, "w");
2703 fprintf(stderr, "Error: cannot open \"%s\"\n", zFile);