http://jira.springframework.org/browse/BATCH-277 Added MySQL to samples and execution DDL generator (untested).
4 lines
117 B
Plaintext
4 lines
117 B
Plaintext
#macro (sequence $name)CREATE TABLE ${name} (ID BIGINT NOT NULL) type=MYISAM;
|
|
INSERT INTO ${name} values(0);
|
|
#end
|