June 2001
Intermediate to advanced
688 pages
19h 18m
English
import com.sleepycat.db.*; import java.io.FileNotFoundException; public void remove(String file, String database, int flags) throws DbException, FileNotFoundException;
The Db.remove interface removes the database specified by the file and database arguments. If no database is specified, the underlying file represented by file is removed, incidentally removing all databases that it contained.
Applications should not remove databases that are currently in use. If an underlying file is being removed and logging is currently enabled in the database environment, no database in the file may be open when the Db.remove method is called. In particular, some architectures do not permit the removal of files with open handles. On ...