dim.odbcDataset: Size of odbcDataset Object

Description Usage Arguments Value Author(s) See Also Examples

Description

Returns the number of rows and columns in the database table corresponding to the odbcDataset object

Usage

1
2
## S3 method for class 'odbcDataset'
dim(x)

Arguments

x

an odbcDataset object.

Value

The number of rows and columns in the odbcDataset object.

Author(s)

John Fox

See Also

odbcDataset, odbcDriverConnect, Prestige.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
## This example presupposes that the data set prestige is stored as a table
## in the database attached via odbcDriverConnect().
## This data set is supplied as the data frame Prestige in the dfdb.RODBC
## package.
## Depending upon your OS/DBMS, the call to odbcDriverConnect() may have
## to be modified.

## Not run: 
channel <- odbcDriverConnect()
            
sqlTables(channel)

Prestige <- odbcDataset(channel, "prestige")  # create a pseudo-dataframe
Prestige
dim(Prestige)
  
## End(Not run)

dfdb.RODBC documentation built on May 2, 2019, 5:18 p.m.