RESOLVED - issue SPR-5917: DataSourceInitializer and namespace support for creating and populating databases

Moved classes but not resources (fixed)
This commit is contained in:
David Syer 2009-10-30 11:26:45 +00:00
parent 747f71f9d2
commit e9a37e4400
2 changed files with 4 additions and 0 deletions

View File

@ -0,0 +1,3 @@
drop table T_TEST if exists;
create table T_TEST (NAME varchar(50) not null);

View File

@ -0,0 +1 @@
insert into T_TEST (NAME) values ('Keith');