This is an R package for rendering parameterized SQL, and translating it to different SQL dialects. This can also be used as a stand-alone Java library and a command-line executable.
This exampe shows the use of parameters, as well as SQLCon's {if} ? {then} : {else} syntax:
sql <- render("SELECT * FROM @a; {@b != ''}?{USE @b;}", a = "my_table", b = "my_schema")
will produce the variable sql
containing this value:
"SELECT * FROM my_table; USE my_schema;"
subsequently running this code
sql <- translate(sql, "oracle")
will produce the variable sql
containing this value:
"SELECT * FROM my_table; ALTER SESSION SET current_schema = my_schema;"
The SqlCon package is an R package wrapped around a Java library. The rJava package is used as interface.
The Java library is available as a JAR file.
Running the package requires R with the package rJava installed. Also requires Java 1.6 or higher.
In R, to install the latest stable version, install from CRAN:
install.packages("SQLConRender")
To install the latest development version, install from GitHub:
install.packages("devtools")
devtools::install_github("kganilkg131/SQLCon")
Once installed, you can try out SQLCon in a Shiny app that comes with the package:
library(SQLCon)
launchSQLConDeveloper()
You can fetch the JAR file in the inst/java folder of this repository, or use Maven:
<repositories>
<repository>
<id>ohdsi</id>
<name>repo.accenture.data.doc.com</name>
<url>http://repo.accenture.data.doc.com:8085/nexus/content/repositories/releases</url>
</repository>
<repository>
<id>ohdsi.snapshots</id>
<name>repo.accenture.data.doc.com-snapshots</name>
<url>http://repo.accenture.data.doc.com:8085/nexus/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
2: Include the SQLCon dependency in your pom.xml
<dependency>
<groupId>com.accenture.data.doc.sqlcon</groupId>
<artifactId>SQLCon</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
You can fetch the JAR file in the inst/java folder of this repository, or use Maven as described above. Run this from the command line to get a list of options:
java -jar SQLCon.jar ?
SQLCon is being developed in R Studio.
Stable. The code is actively being used in several projects.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.