Skip to content

hito4t/embulk-parser-jdbc-schema-csv

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Embulk CSV parser plugin using JDBC to define schema

This Embulk plugin extends CSV parser to define columns based on database meta data.

Overview

  • Plugin type: parser

Configuration

  • schema database table to define columns. Same as embulk-input-plugin.

Others are same as CSV parser plugin except columns (columns are ignored).

Example

in:
  type: file
  path_prefix: 'data/test.csv'
  parser:
    type: jdbc-schema-csv
    delimiter: ','
    header_line: false
    schema: &OUT
      host: localhost
      user: myuser
      password: ""
      database: my_database
      table: my_table
      mode: insert
out: *OUT

Build

$ ./gradle gem

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published