Home | History | Annotate | Download | only in dist

Lines Matching defs:zFile

1747     char *zFile = azArg[1];     /* The file from which to extract data */
1803 in = fopen(zFile, "rb");
1805 fprintf(stderr, "Error: cannot open \"%s\"\n", zFile);
1839 zFile, lineno, nCol, i+1);
1937 const char *zFile, *zProc;
1939 zFile = azArg[1];
1942 rc = sqlite3_load_extension(p->db, zFile, zProc, &zErrMsg);
1952 const char *zFile = azArg[1];
1957 if( strcmp(zFile,"stdout")==0 ){
1959 }else if( strcmp(zFile, "stderr")==0 ){
1961 }else if( strcmp(zFile, "off")==0 ){
1964 p->pLog = fopen(zFile, "w");
1966 fprintf(stderr, "Error: cannot open \"%s\"\n", zFile);