diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/btree.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/btree.c b/src/btree.c index 354d36866..9470d6008 100644 --- a/src/btree.c +++ b/src/btree.c @@ -9,7 +9,7 @@ ** May you share freely, never taking more than you give. ** ************************************************************************* -** $Id: btree.c,v 1.186 2004/09/03 18:38:45 drh Exp $ +** $Id: btree.c,v 1.187 2004/09/03 23:32:19 drh Exp $ ** ** This file implements a external (disk-based) database using BTrees. ** For a detailed discussion of BTrees, refer to @@ -1014,12 +1014,8 @@ static void pageReinit(void *pData, int pageSize){ } /* -** Open a new database. -** -** Actually, this routine just sets up the internal data structures -** for accessing the database. We do not open the database file -** until the first page is loaded. -** +** Open a database file. +** ** zFilename is the name of the database file. If zFilename is NULL ** a new database with a random name is created. This randomly named ** database file will be deleted when sqlite3BtreeClose() is called. |