Learn R Programming

fame (version 2.13)

fameConnection: Fame 'master/dbback' server connection

Description

Creates a connection to a Fame service running on a remote host.

Usage

fameConnection(service = "", host = "", user = "", password = "", stopOnFail = TRUE)
## S3 method for class 'fameConnection':
print(x, \dots)
## S3 method for class 'fameConnection':
close(con, \dots)

Arguments

service
The name of the service on the server, e.g., "someService"
host
The server name
user
User name on the server
password
A string
stopOnFail
if TRUE (the default), failing to connect generates an R error. Otherwise, the function completes but the result is kind of useless.
x
A fameConnection
con
A fameConnection
...
For print, these are arguments passed on to print.matrix. For close, they're ignored.

Value

  • A fameConnection is an integer with attributes "service", "host", "user" and "password".

Details

fameConnection uses the C HLI function cfmopen to create a connection to a Fame service. The connection it returns can be used in subsequent calls to fameWildlist or getfame.

The print and close functions, when called on a fameConnection, do what they say.

See Also

getfame, fameWildlist