- host
Character string. The host address of the Supabase database.
- dbname
Character string. The name of the Supabase database.
- port
Integer. The port number for the Supabase database connection.
- user
Character string. The username for the Supabase database
connection.
- table
Character string. The name of the table to interact with in
the Supabase database.
- password
Character string. The password for the Supabase database
connection. NOTE: While you can provide a hard-coded password here, we do
NOT recommend doing so for security purposes. Instead, you should establish
a password with surveydown::sd_set_password()
, which will create a local
.Renviron
file that stores your password as a SURVEYDOWN_PASSWORD
environment
variable. The password
argument uses this as the default value, so if you
set a password properly with surveydown::sd_set_password()
, then you can
safely ignore using the password
argument here.
- gssencmode
Character string. The GSS encryption mode for the database
connection. Defaults to "prefer"
. NOTE: If you have verified all
connection details are correct but still cannot access the database,
consider setting this to "disable"
. This can be necessary if you're on a
secure connection, such as a VPN.
- ignore
Logical. If TRUE
, data will be saved to a local CSV file
instead of the database. Defaults to FALSE
.
- min_size
Integer. The minimum number of connections in the pool.
Defaults to 1.
- max_size
Integer. The maximum number of connections in the pool.
Defaults to Inf
.