Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/polypheny/polypheny-jdbc-driver
A standards-compliant JDBC driver for Polypheny-DB.
https://github.com/polypheny/polypheny-jdbc-driver
Last synced: 6 days ago
JSON representation
A standards-compliant JDBC driver for Polypheny-DB.
- Host: GitHub
- URL: https://github.com/polypheny/polypheny-jdbc-driver
- Owner: polypheny
- License: apache-2.0
- Created: 2019-03-21T09:42:47.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-04-12T06:48:50.000Z (7 months ago)
- Last Synced: 2024-04-12T15:06:53.211Z (7 months ago)
- Language: Java
- Homepage:
- Size: 6.85 MB
- Stars: 6
- Watchers: 7
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Polypheny JDBC Driver
This repository contains s JDBC driver for Polypheny. It utilizes the *Prism query interface* deployed with every instance of Polypheny by default. The driver adheres to the JDBC 4.2 standard, ensuring compatibility with Java applications, including those written in Scala and Kotlin, as well as tools like DataGrip.
This driver is compatible with JVM version 8 or higher.
## Getting Started
- The driver is published to Maven Central. Make sure that you have added `mavenCentral()` to the repositories section in your gradle build file.
- Add `implementation group: 'org.polypheny', name: 'polypheny-jdbc-driver', version: '2.2'` .
- Optionally: load the driver `org.polypheny.jdbc.PolyphenyDriver`, for example via
```
Class.forName( "org.polypheny.jdbc.PolyphenyDriver" );
```
- Use the connection URL `jdbc:polypheny:http://localhost/` to connect to [Polypheny](https://github.com/polypheny/Polypheny-DB).> For authentication, please use the default username `pa` with an empty password.
## Roadmap
See the [open issues](https://github.com/polypheny/Polypheny-DB/labels/A-jdbc) for a list of proposed features (and known issues).## Contributing
We highly welcome your contributions to the _Polypheny JDBC Driver_. If you would like to contribute, please fork the repository and submit your changes as a pull request. Please consult our [Admin Repository](https://github.com/polypheny/Admin) for guidelines and additional information.Please note that we have a [code of conduct](https://github.com/polypheny/Admin/blob/master/CODE_OF_CONDUCT.md). Please follow it in all your interactions with the project.
## License
The Apache 2.0 License