Browse Source

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

Moved classes but not resources (fixed)
pull/23217/head
David Syer 15 years ago
parent
commit
e9a37e4400
  1. 3
      org.springframework.jdbc/src/test/resources/org/springframework/jdbc/datasource/embedded/db-schema.sql
  2. 1
      org.springframework.jdbc/src/test/resources/org/springframework/jdbc/datasource/embedded/db-test-data.sql

3
org.springframework.jdbc/src/test/resources/org/springframework/jdbc/datasource/embedded/db-schema.sql

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

1
org.springframework.jdbc/src/test/resources/org/springframework/jdbc/datasource/embedded/db-test-data.sql

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