File tree Expand file tree Collapse file tree
src/main/java/de/bytefish/jsqlserverbulkinsert/mapping Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77
88 <groupId >de.bytefish</groupId >
99 <artifactId >jsqlserverbulkinsert</artifactId >
10- <version >1.2 </version >
10+ <version >1.3 </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 >
Original file line number Diff line number Diff line change 77import de .bytefish .jsqlserverbulkinsert .model .ColumnDefinition ;
88import de .bytefish .jsqlserverbulkinsert .model .ColumnMetaData ;
99import de .bytefish .jsqlserverbulkinsert .model .TableDefinition ;
10+ import de .bytefish .jsqlserverbulkinsert .util .StringUtils ;
1011
1112import java .math .BigDecimal ;
1213import java .math .BigInteger ;
@@ -23,6 +24,11 @@ public abstract class AbstractMapping<TEntity> {
2324
2425 private List <ColumnDefinition <TEntity >> columns ;
2526
27+ public AbstractMapping (String tableName )
28+ {
29+ this ("" , tableName );
30+ }
31+
2632 public AbstractMapping (String schemaName , String tableName )
2733 {
2834 this .table = new TableDefinition (schemaName , tableName );
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ You can obtain [JSqlServerBulkInsert] from Maven by adding the following:
1313<dependency >
1414 <groupId >de.bytefish</groupId >
1515 <artifactId >jsqlserverbulkinsert</artifactId >
16- <version >1.2 </version >
16+ <version >1.3 </version >
1717</dependency >
1818```
1919
You can’t perform that action at this time.
0 commit comments