Learn R Programming

shinyNotes (version 0.0.2)

create_schema: Add schema to a SQLite database

Description

Wrapper function to create a new schema in a SQLite database for local development.

Usage

create_schema(schema, con)

Value

None. Executes SQL query and returns silently.

Arguments

schema

Schema name

con

A SQLiteConnection-class object, produced by dbConnect() or shinyNotes::connect_sqlite()

Examples

Run this code
con <- connect_sqlite()
create_schema(con, schema = "demo")

Run the code above in your browser using DataLab