You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jb...@apache.org on 2008/06/06 23:15:11 UTC

svn commit: r664131 - in /geronimo/samples/branches/2.1/samples/customer-service/customer-service-ear/src/main/resources: CustomerService.sql CustomerServicePool.xml META-INF/geronimo-application.xml

Author: jbohn
Date: Fri Jun  6 14:15:10 2008
New Revision: 664131

URL: http://svn.apache.org/viewvc?rev=664131&view=rev
Log:
remove CustomerServicePool which is no longer necessary

Removed:
    geronimo/samples/branches/2.1/samples/customer-service/customer-service-ear/src/main/resources/CustomerServicePool.xml
Modified:
    geronimo/samples/branches/2.1/samples/customer-service/customer-service-ear/src/main/resources/CustomerService.sql
    geronimo/samples/branches/2.1/samples/customer-service/customer-service-ear/src/main/resources/META-INF/geronimo-application.xml

Modified: geronimo/samples/branches/2.1/samples/customer-service/customer-service-ear/src/main/resources/CustomerService.sql
URL: http://svn.apache.org/viewvc/geronimo/samples/branches/2.1/samples/customer-service/customer-service-ear/src/main/resources/CustomerService.sql?rev=664131&r1=664130&r2=664131&view=diff
==============================================================================
--- geronimo/samples/branches/2.1/samples/customer-service/customer-service-ear/src/main/resources/CustomerService.sql (original)
+++ geronimo/samples/branches/2.1/samples/customer-service/customer-service-ear/src/main/resources/CustomerService.sql Fri Jun  6 14:15:10 2008
@@ -15,12 +15,14 @@
  *  limitations under the License.
  */
 
-create table customer (
-   customerid varchar(10) primary key,
-   fullname varchar(30),
-   emailaddress varchar(30),
-   interests varchar(100)
+
+
+CREATE TABLE customer(
+   customerid VARCHAR(10) PRIMARY KEY,
+   fullname VARCHAR(30),
+   emailaddress VARCHAR(30),
+   interests VARCHAR(100)
 );
 
-insert into customer values ('A100','John Doe10','Doe10@work.com','Java,Open Source, Computer Graphics');
-insert into customer values ('b100','Jane Doe20','Doe20@home.net','Budget Travel, New Zealand, Martial Arts');
+INSERT INTO customer VALUES ('A100','John Doe10','Doe10@work.com','Java,Open Source, Computer Graphics');
+INSERT INTO customer VALUES ('b100','Jane Doe20','Doe20@home.net','Budget Travel, New Zealand, Martial Arts');

Modified: geronimo/samples/branches/2.1/samples/customer-service/customer-service-ear/src/main/resources/META-INF/geronimo-application.xml
URL: http://svn.apache.org/viewvc/geronimo/samples/branches/2.1/samples/customer-service/customer-service-ear/src/main/resources/META-INF/geronimo-application.xml?rev=664131&r1=664130&r2=664131&view=diff
==============================================================================
--- geronimo/samples/branches/2.1/samples/customer-service/customer-service-ear/src/main/resources/META-INF/geronimo-application.xml (original)
+++ geronimo/samples/branches/2.1/samples/customer-service/customer-service-ear/src/main/resources/META-INF/geronimo-application.xml Fri Jun  6 14:15:10 2008
@@ -28,10 +28,4 @@
       <dep:hidden-classes/>
       <dep:non-overridable-classes/>
    </dep:environment>
-   
-   <!--<module>-->
-        <!--<connector>tranql-connector-ra-1.3.rar</connector>-->
-        <!--<alt-dd>CustomerServicePool.xml</alt-dd>-->
-   <!--</module>-->
-   
 </application>