RandomSec/extensions/database
Isao Matsunami 96045f0c19
Translated using Weblate (Japanese)
Currently translated at 100.0% (46 of 46 strings)

Translation: OpenRefine/database
Translate-URL: https://hosted.weblate.org/projects/openrefine/database/ja/
2018-08-29 12:39:37 +02:00
..
.settings database extension with classpath fix 2018-01-13 20:24:56 -06:00
licenses database extension with classpath fix 2018-01-13 20:24:56 -06:00
module Translated using Weblate (Japanese) 2018-08-29 12:39:37 +02:00
src/com/google/refine/extension/database fix the template load issue and package typo 2018-06-16 15:43:29 -04:00
test fix the template load issue and package typo 2018-06-16 15:43:29 -04:00
.classpath database extension with classpath fix 2018-01-13 20:24:56 -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
.project 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
build.xml Remove unit_tests.xml and rename others 2018-01-31 08:36:11 +00: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