JDBC input plugins for Embulk loads records to databases using JDBC drivers.
See embulk-input-mysql.
- Plugin type: input
- Resume supported: yes
- driver_path: path to the jar file of the JDBC driver (e.g. 'sqlite-jdbc-3.8.7.jar') (string, optional)
- driver_class: class name of the JDBC driver (e.g. 'org.sqlite.JDBC') (string, required)
- url: URL of the JDBC connection (e.g. 'jdbc:sqlite:mydb.sqlite3') (string, required)
- user: database login user name (string, optional)
- password: database login password (string, default: optional)
- schema: destination schema name (string, default: use the default schema)
- fetch_rows: number of rows to fetch one time (integer, default: 10000)
- options: extra JDBC properties (hash, default: {})
- If you write SQL directly,
- query: SQL to run (string)
- If query is not set,
- table: destination table name (string, required)
- select: comma-separated list of columns to select (string, default: "*")
- where: WHERE condition to filter the rows (string, default: no-condition)
in:
type: jdbc
driver_path: /opt/oracle/ojdbc6.jar
driver_class: oracle.jdbc.driver.OracleDriver
url: jdbc:oracle:thin:@127.0.0.1:1521:mydb
user: myuser
password: "mypassword"
select: "col1, col2, col3"
table: "my_table"
where: "col4 != 'a'"
If you need a complex SQL,
in:
type: jdbc
driver_path: /opt/oracle/ojdbc6.jar
driver_class: oracle.jdbc.driver.OracleDriver
url: jdbc:oracle:thin:@127.0.0.1:1521:mydb
user: myuser
password: "mypassword"
query: |
SELECT t1.id, t1.name, t2.id AS t2_id, t2.name AS t2_name
FROM table1 AS t1
LEFT JOIN table2 AS t2
ON t1.id = t2.t1_id
$ ./gradlew gem