Skip to contents

List remote tables from the data repository. Returns the unquoted names of remote tables accessible through this connection.

Usage

dsListTables(conn)

Arguments

conn

An object that inherits from DSConnection-class.

Value

A character vector of table names.

Examples

if (FALSE) { # \dontrun{
con <- dsConnect(DSOpal::Opal(), "server1",
  username = "dsuser", password = "password", url = "https://opal-demo.obiba.org")
dsListTables(con)
dsDisconnect(con)
} # }