create_schema: Add schema to a SQLite database

View source: R/sqlite_db.R

create_schemaR 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")


shinyNotes documentation built on March 7, 2023, 7:29 p.m.