Learn R Programming

ChemmineR (version 2.24.2)

initDb: Iinitialize SQL Database

Description

This will ensure that the database connection given is ready for use. If it does not find the tables it needs, it will try to create them.

Usage

initDb(handle)

Arguments

handle
This can be either a filename, in which case we assume it is the name of an SQLite database and use RSQLite to connect to it, or else any DBI Connection.

Value

Returns a connection object that can be used with other database oriented functions.

See Also

RSQLite

Examples

Run this code
   #create and initialize a new SQLite database
   conn = initDb("test.db")

Run the code above in your browser using DataLab