Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions server/pxf-drivers/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/build
/bin/
31 changes: 31 additions & 0 deletions server/pxf-drivers/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@

dependencies {
// AthenaJDBC42.jar
implementation 'com.clickhouse:clickhouse-jdbc:0.6.1'
// clickhouse-jdbc-0.6.1-http.jar ??
// commons-cli-1.5.0.jar ??

implementation 'org.apache.httpcomponents.client5:httpclient5:5.3.1'

// DB2
implementation 'net.sf.jt400:jt400:11.2'

// MSSQL
implementation 'com.microsoft.sqlserver:mssql-jdbc:8.2.2.jre11'

// MySQL
implementation 'com.mysql:mysql-connector-java:8.0.26'

// Snowflake
implementation 'net.snowflake:snowflake-jdbc:3.13.9'

// ORA
implementation 'com.oracle.database.jdbc:ojdbc11:23.3.0.23.09'
implementation 'com.oracle.database.jdbc:ucp11:23.3.0.23.09'
// orai18n - unknown version


// trino
testImplementation 'io.trino:trino-jdbc:403'

}
1 change: 1 addition & 0 deletions server/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ include 'pxf-service',
'pxf-json',
'pxf-s3',
'pxf-diagnostic'
'pxf-drivers'