5 Database Utilities

Specify the database server

CONNECT "[server][:service]" ;

The CONNECT statement specifies, which database server should be connected. When connecting the local server using the default eloqdb service, it can be omitted.

For example:

  CONNECT "server";
This specifies to connect the server on host "server".

  CONNECT "server:eloqdb";
This specifies to connect to the database server on host "server" which is listening on the port associated with service name "eloqdb".


Eloquence Database Manual - 19 DEC 2002