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

dsListTables(conn)

Arguments

conn

An object that inherits from DSConnection-class.

Value

A character vector of table names.

Examples

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