June 2001
Intermediate to advanced
688 pages
19h 18m
English
import com.sleepycat.db.*; public void set_tmp_dir(String dir) throws DbException;
The path of a directory to be used as the location of temporary files. The files created to back in-memory access method databases will be created relative to this path. These temporary files can be quite large, depending on the size of the database.
If no directories are specified, the following alternatives are checked in the specified order. The first existing directory path is used for all temporary files.
The value of the environment variable TMPDIR
The value of the environment variable TEMP
The value of the environment variable TMP
The value of the environment variable TempFolder
The value returned by the GetTempPath interface ...