create_schema {shinyNotes}R Documentation

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)

Arguments

schema

Schema name

con

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

Value

None. Executes SQL query and returns silently.

Examples

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


[Package shinyNotes version 0.0.2 Index]