is.Sqlite: Test relationship between an object and DB object class

Description Usage Details Value See Also Examples

View source: R/DbSqlite.R

Description

Test relationship between an object and DB object class

Usage

1
is.Sqlite(obj)

Details

Check to see if the given object has the class Sqlite.

Value

boolean.

See Also

is

Examples

1
2
3
4
5
6
7
s1 <- Sqlite(db_name = ':memory:')
is.Sqlite(s1)
#[1] TRUE

s2 <- list(db_name = ':memory:')
is.Sqlite(s2)
#[1] FALSE

ks465/r-utils documentation built on May 23, 2019, 5:07 p.m.