June 2001
Intermediate to advanced
688 pages
19h 18m
English
import com.sleepycat.db.*; public void set_server(String host, long cl_timeout, long sv_timeout, int flags) throws DbException;
Connects to the DB server on the indicated hostname and sets up a channel for communication.
The cl_timeout argument specifies the number of seconds the client should wait for results to come back from the server. Once the timeout has expired on any communication with the server, Db.DB_NOSERVER will be returned. If this value is zero, a default timeout is used.
The sv_timeout argument specifies the number of seconds the server should allow a client connection to remain idle before assuming that client is gone. Once that timeout has been reached, the server releases all resources associated ...