Package 'dbat'

Title: Concise Summary of What the Package Does
Description: More about what it does (maybe more than one line).
Authors: Your Name [aut, cre]
Maintainer: Your Name <[email protected]>
License: GPL (>= 2)
Version: 1.0
Built: 2026-07-10 07:16:19 UTC
Source: https://codeberg.org/browlingson/dbat

Help Index


Concise Summary of What the Package Does

Description

More about what it does (maybe more than one line).

Package Content

Index of help topics:

dbat                    Attach tables from a connection
dbat-package            Concise Summary of What the Package Does

Maintainer

Your Name <[email protected]>

Author(s)

Your Name [aut, cre]


Attach tables from a connection

Description

Attach tables from a connection

Usage

dbat(con)

Arguments

con

a connection object

Examples

con <- DBI::dbConnect(RSQLite::SQLite(), ":memory:")
DBI::dbWriteTable(con, "db_mtcars", mtcars)
dbat(con)
DBI::dbDisconnect(con)