exportHeelToJson.Rd
exportHeelToJson
Exports Achilles Heel report into a JSON form for reports.
exportHeelToJson( connectionDetails, cdmDatabaseSchema, resultsDatabaseSchema, outputPath = getwd(), vocabDatabaseSchema = cdmDatabaseSchema )
connectionDetails | An R object of type ConnectionDetail (details for the function that contains server info, database type, optionally username/password, port) |
---|---|
cdmDatabaseSchema | Name of the database schema that contains the vocabulary files |
resultsDatabaseSchema | Name of the database schema that contains the Achilles analysis files. Default is cdmDatabaseSchema |
outputPath | A folder location to save the JSON files. Default is current working folder |
vocabDatabaseSchema | string name of database schema that contains OMOP Vocabulary. Default is cdmDatabaseSchema. On SQL Server, this should specifiy both the database and the schema, so for example 'results.dbo'. |
none
Creates individual files for Achilles Heel report found in Achilles.Web
if (FALSE) { connectionDetails <- DatabaseConnector::createConnectionDetails(dbms="sql server", server="yourserver") exportHeelToJson(connectionDetails, cdmDatabaseSchema="cdm4_sim", outputPath="your/output/path") }