dsHasTable,OpalConnection-method {DSOpal} | R Documentation |
Verify Opal table exist and can be accessible for performing DataSHIELD operations.
## S4 method for signature 'OpalConnection'
dsHasTable(conn, table)
conn |
|
table |
The fully qualified name of the table. |
TRUE if table exists.
## Not run:
con <- dbConnect(DSOpal::Opal(), "server1",
"username", "password", "https://opal.example.org")
dsHasTable(con, "test.CNSIM")
dsDisconnect(con)
## End(Not run)