RandomSec/extensions/database
dependabot[bot] 4c7ba73c99
build(deps): bump mysql-connector-java from 8.0.25 to 8.0.26 (#4065)
Bumps [mysql-connector-java](https://github.com/mysql/mysql-connector-j) from 8.0.25 to 8.0.26.
- [Release notes](https://github.com/mysql/mysql-connector-j/releases)
- [Changelog](https://github.com/mysql/mysql-connector-j/blob/release/8.0/CHANGES)
- [Commits](https://github.com/mysql/mysql-connector-j/compare/8.0.25...8.0.26)

---
updated-dependencies:
- dependency-name: mysql:mysql-connector-java
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-07-20 21:44:33 +02:00
..
licenses database extension with classpath fix 2018-01-13 20:24:56 -06:00
module Translated using Weblate (Czech) 2021-06-05 17:13:43 +02:00
src/com/google/refine/extension/database Adjust the condition of the port number (#3954) 2021-06-07 09:22:46 +02:00
tests Fix database extension tests configuration. Closes #3633. (#3634) 2021-02-15 19:01:58 +01:00
.eclipse-pmd database extension with classpath fix 2018-01-13 20:24:56 -06:00
.eslintrc.json database extension with classpath fix 2018-01-13 20:24:56 -06:00
.travis.yml database extension with classpath fix 2018-01-13 20:24:56 -06:00
pom.xml build(deps): bump mysql-connector-java from 8.0.25 to 8.0.26 (#4065) 2021-07-20 21:44:33 +02:00
README.md Update the README.md for database extension (#3916) 2021-05-18 00:34:58 +02:00

This project is an OpenRefine extension for importing database data using JDBC. For exporting to a database, other code can be found under folder OpenRefine/main/src/com/google/refine/exporters/sql

Adding support for other database vendors

  1. You'll want to register an additional Database Service: https://github.com/OpenRefine/OpenRefine/blob/master/extensions/database/src/com/google/refine/extension/database/DatabaseService.java
  2. Provide the connection and service classes, look at the PostgreSQL one or MySQL one as examples: https://github.com/OpenRefine/OpenRefine/tree/master/extensions/database/src/com/google/refine/extension/database
  3. Then wire up the interface with defaults as desired: https://github.com/OpenRefine/OpenRefine/blob/master/extensions/database/module/scripts/index/database-source-ui.js#L93
  4. Add drivers manually to the classpath, or update the pom file to provide them as dependencies as other DB libraries are done: https://github.com/OpenRefine/OpenRefine/blob/master/extensions/database/pom.xml