BATCH-1499, BATCH-1497: add alias in SqlPagingItemReader.

This commit is contained in:
dsyer
2010-01-31 18:43:53 +00:00
parent a699c5c4bd
commit 96e6286beb
12 changed files with 123 additions and 25 deletions

View File

@@ -1,4 +1,5 @@
#macro (sequence $name $value)CREATE TABLE ${name} (ID BIGINT IDENTITY);
SET IDENTITY_INSERT ${name} ON;
INSERT INTO ${name} (ID) values (${value});
#end
#macro (notnull $name $type)ALTER COLUMN ${name} ${type} NOT NULL#end