D_DBFPATH

SUMMARY
d_dbfpath(path)
char *path;

ARGUMENTS
path String containing path to directory which contains
the database files.

DESCRIPTION
This function sets the path to the directory containing the database
data and key file.This function must be called before the database is
opened.Multiple paths may be specified for multiple database opens.
The multiple paths must be separated by ";".If only one path is specified ,
it will apply to all databases opened.

CURRENCY CHANGES
None

RETURN CODES

-1 S_DBOPEN Datadase is open.Function called after d_open.

-35 S_NAMELEN The path of the dictionary was too long.


EXAMPLE
..
d_dbdpath("\\tims\\control\\;\\tims\\archive\\");
d_dbfpath("\\tims\\data\\;\\tims\\olddata\\");
d_open("tims;oldtims","o");
..