June 2001
Intermediate to advanced
688 pages
19h 18m
English
#include <db_cxx.h> int DbEnv::set_server(char *host, long cl_timeout, long sv_timeout, u_int32_t flags);
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_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 with that client connection. ...