db.search.path {PivotalR} | R Documentation |
Allow the user to check and set the search path for the session that he connects to the database. The search path is a set of schema names separated by commas. These are the default schemas that the programme will search and save tables if a schema name is not given together with the table name in the format of "schema_name.table_name".
db.search.path(conn.id = 1, set = NULL) db.default.schemas(conn.id = 1, set = NULL)
conn.id |
An integer, default is 1. The ID of the database connection. |
set |
A string, default is |
When set
is NULL
, this function prints the current
connected session's search path.
Author: Predictive Analytics Team at Pivotal Inc.
Maintainer: Frank McQuillan, Pivotal Inc. fmcquillan@pivotal.io
db.connect
connects to database, and the parameter
default.schemas
can be used to set the search path when
connecting.
## Not run: ## set up the database connection ## Assume that .port is port number and .dbname is the database name cid <- db.connect(port = .port, dbname = .dbname, verbose = FALSE, default.schemas = "public,madlib") db.search.path() db.search.path(set = "public,madlibtestdata") db.disconnect(cid, verbose = FALSE) ## End(Not run)