Skip to content

hito4t/embulk-parser-jdbc-schema-csv

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 

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