Skip to contents

survey_table returns a tibble with information about the target SQL table.

Usage

survey_table(conn, database, schema, table)

Arguments

conn

A DBIConnection object, as returned by DBI::dbConnect().

database

Name of database or catalog.

schema

Name of schema.

table

Name of table.

Value

Tibble with information about the target table.

Examples

if (FALSE) { # \dontrun{
survey_table(
  conn = my_connection,
  database = "my_database",
  schema = "my_schema",
  table = "my_table"
)
} # }