View source: R/uploadToDatabase.R
createDatabaseSchemaSettings | R Documentation |
This function specifies where the results schema is and lets you pick a different schema for the cohorts and databases
createDatabaseSchemaSettings(
resultSchema = "main",
tablePrefix = "",
targetDialect = "sqlite",
tempEmulationSchema = getOption("sqlRenderTempEmulationSchema"),
cohortDefinitionSchema = resultSchema,
tablePrefixCohortDefinitionTables = tablePrefix,
databaseDefinitionSchema = resultSchema,
tablePrefixDatabaseDefinitionTables = tablePrefix
)
resultSchema |
(string) The name of the database schema with the result tables. |
tablePrefix |
(string) A string that appends to the PatientLevelPrediction result tables |
targetDialect |
(string) The database management system being used |
tempEmulationSchema |
(string) The temp schema used when the database management system is oracle |
cohortDefinitionSchema |
(string) The name of the database schema with the cohort definition tables (defaults to resultSchema). |
tablePrefixCohortDefinitionTables |
(string) A string that appends to the cohort definition tables |
databaseDefinitionSchema |
(string) The name of the database schema with the database definition tables (defaults to resultSchema). |
tablePrefixDatabaseDefinitionTables |
(string) A string that appends to the database definition tables |
This function can be used to specify the database settings used to upload PatientLevelPrediction results into a database
Returns a list of class 'plpDatabaseResultSchema' with all the database settings
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.