Learn R Programming

rangeMapper (version 0.0-4)

tkdbBrowse: Browse an sqlite database.

Description

Browse an sqlite database using a tcltk interface.

Usage

tkdbBrowse(con, prefix = NULL, tables.name.only = FALSE, info)

Arguments

con
A valid sqlite connection.
prefix
Shows only tables with the given prefix
tables.name.only
If FALSE, the default, shows only table names.
info
A character string containing a short text to be shown left to the OK button.

Examples

Run this code
## These cannot be run by examples() but should be OK when pasted
## into an interactive R session 
setwd(tempdir())
dbcon = dbConnect(dbDriver("SQLite"), dbname= "test.sqlite")
db.ini(dbcon)

# select one table and then press OK
tkdbBrowse(dbcon)

Run the code above in your browser using DataLab