Lines Matching defs:zFilename
478 sqlite *sqlite_open(const char *zFilename, int mode, char **pzErrMsg){
501 if( zFilename[0]==':' && strcmp(zFilename,":memory:")==0 ){
504 rc = sqliteBtreeFactory(db, zFilename, 0, MAX_PAGES, &db->aDb[0].pBt);
509 zFilename, (char*)0);
1089 ** driver. If zFilename is the name of a file, then that file is
1090 ** opened and used. If zFilename is the magic name ":memory:" then
1092 ** the connection is closed.) If zFilename is NULL then the database
1114 const char *zFilename, /* Name of the file containing the BTree database */
1122 if( zFilename==0 ){
1131 return sqliteBtreeOpen(zFilename, omitJournal, nCache, ppBtree);
1139 }else if( zFilename[0]==':' && strcmp(zFilename,":memory:")==0 ){
1144 return sqliteBtreeOpen(zFilename, omitJournal, nCache, ppBtree);