unpak.db.structure: grab tables and fields from db

Description Usage Arguments Examples

Description

grab tables and fields from db

Usage

1

Arguments

con

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (con = unpak.get.con()) 
{
    tables <- unpak.tables(con)
    ret <- lapply(tables, function(x) {
        list(table = x)
    })
    names(ret) <- tables
    lapply(ret, function(conn, x) {
        list(table = x$table, fields = dbListFields(conn, x$table))
    }, conn = con)
  }

stranda/unpakDB documentation built on May 30, 2019, 7:55 p.m.