Add spring-batch- to module directory names (so folks can use mvn eclipse:eclipse if they want to).
BATCH-238: Remove hibernate support for the Daos.
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
#parse("${includes}/destroy.sql.vpp")
|
||||
|
||||
#parse("${includes}/init.sql.vpp")
|
||||
6
spring-batch-samples/src/main/sql/db2.properties
Normal file
6
spring-batch-samples/src/main/sql/db2.properties
Normal file
@@ -0,0 +1,6 @@
|
||||
platform=db2
|
||||
# SQL language oddities
|
||||
BIGINT = BIGINT
|
||||
IDENTITY =
|
||||
# for generating drop statements...
|
||||
SEQUENCE = SEQUENCE
|
||||
2
spring-batch-samples/src/main/sql/db2.vpp
Normal file
2
spring-batch-samples/src/main/sql/db2.vpp
Normal file
@@ -0,0 +1,2 @@
|
||||
#macro (sequence $name)CREATE SEQUENCE ${name};
|
||||
#end
|
||||
7
spring-batch-samples/src/main/sql/derby.properties
Normal file
7
spring-batch-samples/src/main/sql/derby.properties
Normal file
@@ -0,0 +1,7 @@
|
||||
platform=db2
|
||||
# SQL language oddities
|
||||
BIGINT = BIGINT
|
||||
IDENTITY =
|
||||
GENERATED = GENERATED BY DEFAULT AS IDENTITY
|
||||
# for generating drop statements...
|
||||
SEQUENCE = SEQUENCE
|
||||
2
spring-batch-samples/src/main/sql/derby.vpp
Normal file
2
spring-batch-samples/src/main/sql/derby.vpp
Normal file
@@ -0,0 +1,2 @@
|
||||
#macro (sequence $name)CREATE SEQUENCE ${name};
|
||||
#end
|
||||
8
spring-batch-samples/src/main/sql/destroy.sql.vpp
Normal file
8
spring-batch-samples/src/main/sql/destroy.sql.vpp
Normal file
@@ -0,0 +1,8 @@
|
||||
-- Autogenerated: do not edit this file
|
||||
DROP TABLE TRADE $!{IFEXISTS};
|
||||
DROP ${SEQUENCE} TRADE_SEQ $!{IFEXISTS};
|
||||
DROP TABLE CUSTOMER $!{IFEXISTS};
|
||||
DROP ${SEQUENCE} CUSTOMER_SEQ $!{IFEXISTS};
|
||||
DROP TABLE PLAYERS $!{IFEXISTS};
|
||||
DROP TABLE GAMES $!{IFEXISTS};
|
||||
DROP TABLE PLAYER_SUMMARY $!{IFEXISTS};
|
||||
7
spring-batch-samples/src/main/sql/hsqldb.properties
Normal file
7
spring-batch-samples/src/main/sql/hsqldb.properties
Normal file
@@ -0,0 +1,7 @@
|
||||
platform=hsqldb
|
||||
# SQL language oddities
|
||||
BIGINT = BIGINT
|
||||
IDENTITY = IDENTITY
|
||||
IFEXISTS = IF EXISTS
|
||||
# for generating drop statements...
|
||||
SEQUENCE = TABLE
|
||||
4
spring-batch-samples/src/main/sql/hsqldb.vpp
Normal file
4
spring-batch-samples/src/main/sql/hsqldb.vpp
Normal file
@@ -0,0 +1,4 @@
|
||||
#macro (sequence $name)CREATE TABLE ${name} (
|
||||
ID BIGINT IDENTITY
|
||||
);
|
||||
#end
|
||||
67
spring-batch-samples/src/main/sql/init.sql.vpp
Normal file
67
spring-batch-samples/src/main/sql/init.sql.vpp
Normal file
@@ -0,0 +1,67 @@
|
||||
-- Autogenerated: do not edit this file
|
||||
CREATE TABLE TRADE (
|
||||
ID ${BIGINT} $!{IDENTITY} PRIMARY KEY $!{GENERATED},
|
||||
VERSION ${BIGINT},
|
||||
ISIN VARCHAR(45) NOT NULL,
|
||||
QUANTITY ${BIGINT},
|
||||
PRICE FLOAT,
|
||||
CUSTOMER VARCHAR(45)
|
||||
);
|
||||
|
||||
#sequence( "TRADE_SEQ" )
|
||||
|
||||
CREATE TABLE CUSTOMER (
|
||||
ID ${BIGINT} $!{IDENTITY} PRIMARY KEY $!{GENERATED},
|
||||
VERSION ${BIGINT},
|
||||
NAME VARCHAR(45),
|
||||
CREDIT FLOAT
|
||||
);
|
||||
|
||||
#sequence( "CUSTOMER_SEQ" )
|
||||
|
||||
INSERT INTO customer (id, version, name, credit) VALUES (1, 0, 'customer1', 100000);
|
||||
INSERT INTO customer (id, version, name, credit) VALUES (2, 0, 'customer2', 100000);
|
||||
INSERT INTO customer (id, version, name, credit) VALUES (3, 0, 'customer3', 100000);
|
||||
INSERT INTO customer (id, version, name, credit) VALUES (4, 0, 'customer4', 100000);
|
||||
|
||||
CREATE TABLE PLAYERS (
|
||||
PLAYER_ID char(8) NOT NULL PRIMARY KEY,
|
||||
LAST_NAME varchar(35) not null,
|
||||
FIRST_NAME varchar(25) not null,
|
||||
POS varchar(10),
|
||||
YEAR_OF_BIRTH ${BIGINT} not null,
|
||||
YEAR_DRAFTED ${BIGINT} not null
|
||||
);
|
||||
|
||||
CREATE TABLE GAMES (
|
||||
PLAYER_ID char(8) not null PRIMARY KEY,
|
||||
YEAR ${BIGINT} not null,
|
||||
TEAM char(3) not null,
|
||||
WEEK ${BIGINT} not null,
|
||||
OPPONENT char(3),
|
||||
COMPLETES ${BIGINT},
|
||||
ATTEMPTS ${BIGINT},
|
||||
PASSING_YARDS ${BIGINT},
|
||||
PASSING_TD ${BIGINT},
|
||||
INTERCEPTIONS ${BIGINT},
|
||||
RUSHES ${BIGINT},
|
||||
RUSH_YARDS ${BIGINT},
|
||||
RECEPTIONS ${BIGINT},
|
||||
RECEPTIONS_YARDS ${BIGINT},
|
||||
TOTAL_TD ${BIGINT}
|
||||
);
|
||||
|
||||
CREATE TABLE PLAYER_SUMMARY (
|
||||
ID CHAR(8) NOT NULL PRIMARY KEY,
|
||||
YEAR ${BIGINT} NOT NULL,
|
||||
COMPLETES ${BIGINT} NOT NULL ,
|
||||
ATTEMPTS ${BIGINT} NOT NULL ,
|
||||
PASSING_YARDS ${BIGINT} NOT NULL ,
|
||||
PASSING_TD ${BIGINT} NOT NULL ,
|
||||
INTERCEPTIONS ${BIGINT} NOT NULL ,
|
||||
RUSHES ${BIGINT} NOT NULL ,
|
||||
RUSH_YARDS ${BIGINT} NOT NULL ,
|
||||
RECEPTIONS ${BIGINT} NOT NULL ,
|
||||
RECEPTIONS_YARDS ${BIGINT} NOT NULL ,
|
||||
TOTAL_TD ${BIGINT} NOT NULL
|
||||
);
|
||||
7
spring-batch-samples/src/main/sql/oracle10g.properties
Normal file
7
spring-batch-samples/src/main/sql/oracle10g.properties
Normal file
@@ -0,0 +1,7 @@
|
||||
platform=oracle10g
|
||||
# SQL language oddities
|
||||
BIGINT = NUMBER(38)
|
||||
IDENTITY =
|
||||
GENERATED =
|
||||
# for generating drop statements...
|
||||
SEQUENCE = SEQUENCE
|
||||
2
spring-batch-samples/src/main/sql/oracle10g.vpp
Normal file
2
spring-batch-samples/src/main/sql/oracle10g.vpp
Normal file
@@ -0,0 +1,2 @@
|
||||
#macro (sequence $name)CREATE SEQUENCE ${name};
|
||||
#end
|
||||
7
spring-batch-samples/src/main/sql/postgresql.properties
Normal file
7
spring-batch-samples/src/main/sql/postgresql.properties
Normal file
@@ -0,0 +1,7 @@
|
||||
platform=postgresql
|
||||
# SQL language oddities
|
||||
BIGINT = BIGINT
|
||||
IDENTITY =
|
||||
GENERATED =
|
||||
# for generating drop statements...
|
||||
SEQUENCE = SEQUENCE
|
||||
2
spring-batch-samples/src/main/sql/postgresql.vpp
Normal file
2
spring-batch-samples/src/main/sql/postgresql.vpp
Normal file
@@ -0,0 +1,2 @@
|
||||
#macro (sequence $name)CREATE SEQUENCE ${name};
|
||||
#end
|
||||
Reference in New Issue
Block a user