-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #377 from intersystems-community/main
Add support for InterSystems IRIS as an additional database platform
- Loading branch information
Showing
14 changed files
with
230 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ Maintainer: Martijn Schuemie <[email protected]> | |
Description: A rendering tool for parameterized SQL that also translates into | ||
different SQL dialects. These dialects include 'Microsoft SQL Server', 'Oracle', | ||
'PostgreSql', 'Amazon RedShift', 'Apache Impala', 'IBM Netezza', 'Google BigQuery', 'Microsoft PDW', 'Snowflake', | ||
'Azure Synapse Analytics Dedicated', 'Apache Spark', and 'SQLite'. | ||
'Azure Synapse Analytics Dedicated', 'Apache Spark', 'SQLite', and 'InterSystems IRIS'. | ||
SystemRequirements: Java (>= 8) | ||
License: Apache License 2.0 | ||
VignetteBuilder: knitr | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,45 @@ | ||
library(shiny) | ||
library(shinydashboard) | ||
source("widgets.R") | ||
|
||
dashboardPage( | ||
dashboardHeader(title = "SqlRender Developer"), | ||
dashboardSidebar( | ||
sidebarMenu( | ||
menuItemFileInput("open", "Open file", icon = shiny::icon("folder-open")), | ||
menuItemDownloadLink("save", "Save", icon = shiny::icon("save")), | ||
menuItem("Open new tab", href = "", icon = shiny::icon("plus-square")), | ||
menuItemCopyTextAreaToClipboard("source", "Copy source to clipboard"), | ||
menuItemCopyDivToClipboard("target", "Copy target to clipboard") | ||
) | ||
), | ||
dashboardBody( | ||
fluidRow( | ||
column(width = 9, | ||
box( | ||
title = "Source: OHDSI SQL", width = NULL, status = "primary", | ||
textAreaInput("source", NULL, width = "100%", height = "300px") | ||
), | ||
box( | ||
title = "Target: Rendered translation", width = NULL, | ||
# tags$table(width = "100%", | ||
# tags$tr( | ||
# tags$td(align = "left", actionButton("renderTranslate", "Render and translate")), | ||
# tags$td(align = "right", checkboxInput("continuous", "Auto render and translate")))), | ||
pre(textOutput("target")) | ||
) | ||
), | ||
column(width = 3, | ||
box(background = "light-blue", | ||
h4("Target dialect"), width = NULL, | ||
selectInput("dialect", NULL, choices = c("BigQuery", "Impala", "Netezza", "Oracle", "PDW", "PostgreSQL", "RedShift", "SQL Server", "SQLite", "Hive", "Spark", "Snowflake", "Synapse"), selected = "SQL Server"), | ||
h4("Temp emulation schema"), | ||
textInput("tempEmulationSchema", NULL), | ||
h4("Parameters"), | ||
uiOutput("parameterInputs"), | ||
textOutput("warnings") | ||
) | ||
) | ||
) | ||
) | ||
) | ||
library(shiny) | ||
library(shinydashboard) | ||
source("widgets.R") | ||
|
||
dashboardPage( | ||
dashboardHeader(title = "SqlRender Developer"), | ||
dashboardSidebar( | ||
sidebarMenu( | ||
menuItemFileInput("open", "Open file", icon = shiny::icon("folder-open")), | ||
menuItemDownloadLink("save", "Save", icon = shiny::icon("save")), | ||
menuItem("Open new tab", href = "", icon = shiny::icon("plus-square")), | ||
menuItemCopyTextAreaToClipboard("source", "Copy source to clipboard"), | ||
menuItemCopyDivToClipboard("target", "Copy target to clipboard") | ||
) | ||
), | ||
dashboardBody( | ||
fluidRow( | ||
column(width = 9, | ||
box( | ||
title = "Source: OHDSI SQL", width = NULL, status = "primary", | ||
textAreaInput("source", NULL, width = "100%", height = "300px") | ||
), | ||
box( | ||
title = "Target: Rendered translation", width = NULL, | ||
# tags$table(width = "100%", | ||
# tags$tr( | ||
# tags$td(align = "left", actionButton("renderTranslate", "Render and translate")), | ||
# tags$td(align = "right", checkboxInput("continuous", "Auto render and translate")))), | ||
pre(textOutput("target")) | ||
) | ||
), | ||
column(width = 3, | ||
box(background = "light-blue", | ||
h4("Target dialect"), width = NULL, | ||
selectInput("dialect", NULL, choices = c("BigQuery", "Impala", "Netezza", "Oracle", "PDW", "PostgreSQL", "RedShift", "SQL Server", "SQLite", "Hive", "Spark", "Snowflake", "Synapse", "InterSystems IRIS" = "iris"), selected = "SQL Server"), | ||
h4("Temp emulation schema"), | ||
textInput("tempEmulationSchema", NULL), | ||
h4("Parameters"), | ||
uiOutput("parameterInputs"), | ||
textOutput("warnings") | ||
) | ||
) | ||
) | ||
) | ||
) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.