RandomSec/extensions/database
dependabot-preview[bot] 63ebccfa2d
Bump mockito-core from 3.5.13 to 3.5.15 (#3279)
Bumps [mockito-core](https://github.com/mockito/mockito) from 3.5.13 to 3.5.15.
- [Release notes](https://github.com/mockito/mockito/releases)
- [Commits](https://github.com/mockito/mockito/compare/v3.5.13...v3.5.15)

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

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-10-20 10:20:40 +02:00
..
licenses database extension with classpath fix 2018-01-13 20:24:56 -06:00
module Translated using Weblate (Hebrew) 2020-10-19 11:11:22 +02:00
src/com/google/refine/extension/database Handle NumberFormatException thrown in DatabaseImportController (#3116) 2020-08-25 14:40:49 -04:00
tests Replaced some deprecated methods 2020-02-24 23:51:41 -06: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 Bump mockito-core from 3.5.13 to 3.5.15 (#3279) 2020-10-20 10:20:40 +02:00
README.md database extension with classpath fix 2018-01-13 20:24:56 -06:00

This project is an extension for OpenRefine that provides a way to import database data using JDBC.

INSTALL

  1. Before installing this extension download OpenRefine code from http://code.google.com/p/google-refine/source/checkout.

  2. Pull this extension's code into folder database under folder /extensions. For more information on how to write a OpenRefine extensions and where to put the files see http://code.google.com/p/google-refine/wiki/WriteAnExtension

The folder structure should resemble this: grefine-all/ ----------/extensions --------------/database ------------------/module ------------------/src ------------------build.xml ------------------README (this file)

  1. Update build.xml in folder /extensions with build and clean ant tasks for database:
<target name="clean">
    <echo message="cleaning extensions" />
    <ant dir="sample/" target="clean" />
    <ant dir="jython/" target="clean" />
    <ant dir="freebase/" target="clean" />
    <ant dir="gdata/" target="clean" />
    <ant dir="database/" target="clean" />
</target>
  1. If using Eclipse, make sure that you build project with ant