Skip to content

Commit cd36a39

Browse files
committed
Simplify Auto-Increment, Update Copyrights
1 parent e259a17 commit cd36a39

60 files changed

Lines changed: 125 additions & 60 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

JSqlServerBulkInsert/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<groupId>de.bytefish</groupId>
99
<artifactId>jsqlserverbulkinsert</artifactId>
10-
<version>1.5</version>
10+
<version>2.0</version>
1111
<name>jsqlserverbulkinsert</name>
1212
<description>JSqlServerBulkInsert is a Java library for Bulk Inserts to the SQL Server.</description>
1313
<url>http://www.github.com/bytefish/JSqlServerBulkInsert</url>

JSqlServerBulkInsert/src/main/java/de/bytefish/jsqlserverbulkinsert/ISqlServerBulkInsert.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Philipp Wagner. All rights reserved.
1+
// Copyright (c) Philipp Wagner and Victor Lee. All rights reserved.
22
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
package de.bytefish.jsqlserverbulkinsert;

JSqlServerBulkInsert/src/main/java/de/bytefish/jsqlserverbulkinsert/SqlServerBulkInsert.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Philipp Wagner. All rights reserved.
1+
// Copyright (c) Philipp Wagner and Victor Lee. All rights reserved.
22
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
package de.bytefish.jsqlserverbulkinsert;

JSqlServerBulkInsert/src/main/java/de/bytefish/jsqlserverbulkinsert/converters/BaseConverter.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Philipp Wagner and Victor Lee. All rights reserved.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3+
14
package de.bytefish.jsqlserverbulkinsert.converters;
25

36
public abstract class BaseConverter<TSourceType> implements IConverter<TSourceType> {

JSqlServerBulkInsert/src/main/java/de/bytefish/jsqlserverbulkinsert/converters/BigDecimalConverter.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Philipp Wagner and Victor Lee. All rights reserved.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3+
14
package de.bytefish.jsqlserverbulkinsert.converters;
25

36
import java.math.BigDecimal;

JSqlServerBulkInsert/src/main/java/de/bytefish/jsqlserverbulkinsert/converters/BigIntegerConverter.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Philipp Wagner and Victor Lee. All rights reserved.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3+
14
package de.bytefish.jsqlserverbulkinsert.converters;
25

36
import java.math.BigInteger;

JSqlServerBulkInsert/src/main/java/de/bytefish/jsqlserverbulkinsert/converters/BooleanConverter.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Philipp Wagner and Victor Lee. All rights reserved.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3+
14
package de.bytefish.jsqlserverbulkinsert.converters;
25

36
public class BooleanConverter extends BaseConverter<Boolean> {

JSqlServerBulkInsert/src/main/java/de/bytefish/jsqlserverbulkinsert/converters/CharacterConverter.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Philipp Wagner and Victor Lee. All rights reserved.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3+
14
package de.bytefish.jsqlserverbulkinsert.converters;
25

36
public class CharacterConverter extends BaseConverter<Character> {

JSqlServerBulkInsert/src/main/java/de/bytefish/jsqlserverbulkinsert/converters/DoubleConverter.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Philipp Wagner and Victor Lee. All rights reserved.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3+
14
package de.bytefish.jsqlserverbulkinsert.converters;
25

36
public class DoubleConverter extends BaseConverter<Double> {

JSqlServerBulkInsert/src/main/java/de/bytefish/jsqlserverbulkinsert/converters/FloatConverter.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Philipp Wagner and Victor Lee. All rights reserved.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3+
14
package de.bytefish.jsqlserverbulkinsert.converters;
25

36
public class FloatConverter extends BaseConverter<Float> {

0 commit comments

Comments
 (0)