Allows you to connect to an existing database through a presto connection.
Use src_presto
to connect to an existing database,
and tbl
to connect to tables within that database.
If you're unsure of the arguments to pass, please ask your database
administrator for the values of these variables.
src_presto(
catalog = NULL,
schema = NULL,
user = NULL,
host = NULL,
port = NULL,
source = NULL,
session.timezone = NULL,
parameters = NULL,
...
)tbl.src_presto(src, from, ...)
Catalog to use in the connection
Schema to use in the connection
User name to use in the connection
Host name to connect to the database
Port number to use with the host name
Source to specify for the connection
Time zone for the connection
Additional parameters to pass to the connection
For src_presto
other arguments passed on to the underlying
database connector dbConnect
. For tbl.src_presto
, it is
included for compatibility with the generic, but otherwise ignored.
A presto src created with src_presto
.
Either a string giving the name of table in database, or
sql
described a derived table or compound join.