embulk-output-sqlserver 0.7.0 → 0.7.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dad9cc8adb34ede9de7d4928636e1c79f465f4d3
4
- data.tar.gz: 21b9f512ffa74a2ce15a426f9202037a47357276
3
+ metadata.gz: d974a42bda50d1cc40c33c3d25e15ef4a74fbc91
4
+ data.tar.gz: c9f3cc3c294b6528344aed949cd991cd5d781f48
5
5
  SHA512:
6
- metadata.gz: a125d3123a15b602a18b9c3a3feaa26c1d901a9d4e93a083e5bb3bc4897bfb815ffc27c5399a209a5af870481af922bc8782e8a1756a3c05fe52ab48c0018d92
7
- data.tar.gz: d82c71b0a77c92fcd9d7ccf0f6e8e6805ef8618c5956f216cab06b4352b48396cd8da3f96a59d7ec296a7c94bdf05396d39ce681a38eb35164e4efbb053a8357
6
+ metadata.gz: a6460579ddcf2544670f3fef6a8a8e376cfc39bb2c5aef1efb167c5863832f2f8792dd81769cf767814135292cf9ca79496a173174252246686bb3635608c8ef
7
+ data.tar.gz: 56502e2371187fdeeb45d0f15ce5687d549a86cba5122fda35273fef6f6fe6eecba48744a2f2c2f6d583cad317a845a8363d7f8996868d386b499de1d82b5eac
data/README.md CHANGED
@@ -37,6 +37,7 @@ embulk "-J-Djava.library.path=C:\drivers" run input-sqlserver.yml
37
37
  - **value_type**: This plugin converts input column type (embulk type) into a database type to build a INSERT statement. This value_type option controls the type of the value in a INSERT statement. (string, default: depends on the sql type of the column. Available values options are: `byte`, `short`, `int`, `long`, `double`, `float`, `boolean`, `string`, `nstring`, `date`, `time`, `timestamp`, `decimal`, `json`, `null`, `pass`)
38
38
  - **timestamp_format**: If input column type (embulk type) is timestamp and value_type is `string` or `nstring`, this plugin needs to format the timestamp value into a string. This timestamp_format option is used to control the format of the timestamp. (string, default: `%Y-%m-%d %H:%M:%S.%6N`)
39
39
  - **timezone**: If input column type (embulk type) is timestamp, this plugin needs to format the timestamp value into a SQL string. In this cases, this timezone option is used to control the timezone. (string, value of default_timezone option is used by default)
40
+ - **after_load**: if set, this SQL will be executed after loading all records.
40
41
 
41
42
  ### Modes
42
43
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: embulk-output-sqlserver
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sadayuki Furuhashi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-10-26 00:00:00.000000000 Z
11
+ date: 2016-11-25 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Inserts or updates records to a table.
14
14
  email:
@@ -19,8 +19,8 @@ extra_rdoc_files: []
19
19
  files:
20
20
  - README.md
21
21
  - build.gradle
22
- - classpath/embulk-output-jdbc-0.7.0.jar
23
- - classpath/embulk-output-sqlserver-0.7.0.jar
22
+ - classpath/embulk-output-jdbc-0.7.1.jar
23
+ - classpath/embulk-output-sqlserver-0.7.1.jar
24
24
  - classpath/jtds-1.3.1.jar
25
25
  - lib/embulk/output/sqlserver.rb
26
26
  - src/main/java/org/embulk/output/SQLServerOutputPlugin.java