spec_driver_connect
Value
dbConnect() returns an S4 object that inherits from DBI::DBIConnection.
This object is used to communicate with the database engine.
A format() method is defined for the connection object.
It returns a string that consists of a single line of text.
Specification
DBI recommends using the following argument names for authentication
parameters, with NULL default:
userfor the user name (default: current user)passwordfor the passwordhostfor the host name (default: local connection)portfor the port number (default: local connection)dbnamefor the name of the database on the host, or the database file name
The defaults should provide reasonable behavior, in particular a
local connection for host = NULL. For some DBMS (e.g., PostgreSQL),
this is different to a TCP/IP connection to localhost.
In addition, DBI supports the bigint argument that governs how
64-bit integer data is returned. The following values are supported:
"integer": always return asinteger, silently overflow"numeric": always return asnumeric, silently round"character": always return the decimal representation ascharacter"integer64": return as a data type that can be coerced usingas.integer()(with warning on overflow),as.numeric()andas.character()
See also
Other driver specifications:
spec_driver_constructor,
spec_driver_data_type,
spec_get_info