IN PROGRESS - issue BATCH-277: Add Mysql schema and configurations to the DAO classes

http://jira.springframework.org/browse/BATCH-277

Added MySQL to samples and execution DDL generator (untested).
This commit is contained in:
dsyer
2008-01-13 12:45:51 +00:00
parent ce9814f573
commit 448409a257
8 changed files with 201 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
platform=oracle10g
# SQL language oddities
BIGINT = BIGINT
IDENTITY = unsigned
GENERATED =
IFEXISTS = IF EXISTS
# for generating drop statements...
SEQUENCE = TABLE

View File

@@ -0,0 +1,3 @@
#macro (sequence $name)CREATE TABLE ${name} (ID BIGINT NOT NULL) type=MYISAM;
INSERT INTO ${name} values(0);
#end