Display the list of tables in a database
Arguments
- login
The connection object obtained from the
login()
function.
Examples
if (FALSE) { # \dontrun{
# connect to the test MySQL server
rdbms_login <- login(
from = "mysql-rfam-public.ebi.ac.uk",
type = "mysql",
user_name = "rfamro",
password = "",
driver_name = "",
db_name = "Rfam",
port = 4497
)
# display the list of available tables from this database
tables <- show_tables(login = rdbms_login)
} # }