RandomSec/extensions/database
2018-01-10 21:01:51 -06:00
..
.settings database extension code commit 2017-12-22 22:43:02 -06:00
licenses database extension code commit 2017-12-22 22:43:02 -06:00
module added test extra unit test 2018-01-10 21:00:10 -06:00
src/com/google/refine/extension/database added test extra unit test 2018-01-10 21:00:10 -06:00
test new test util class 2018-01-10 21:01:51 -06:00
.classpath added test extra unit test 2018-01-10 21:00:10 -06:00
.eclipse-pmd added test extra unit test 2018-01-10 21:00:10 -06:00
.eslintrc.json code cleanup with eslint and checkstyle 2017-12-24 00:52:40 -06:00
.project code cleanup with eslint and checkstyle 2017-12-24 00:52:40 -06:00
build.xml database extension code commit 2017-12-22 22:43:02 -06:00
README.md code cleanup with eslint and checkstyle 2017-12-24 00:52:40 -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