[jboss-svn-commits] JBL Code SVN: r17665 - in labs/jbossesb/branches/JBESB_4_2_1_GA_CP/product/samples/quickstarts/helloworld_sql_action: src/hsqldb and 1 other directory.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Thu Jan 10 01:09:46 EST 2008


Author: tcunning
Date: 2008-01-10 01:09:46 -0500 (Thu, 10 Jan 2008)
New Revision: 17665

Modified:
   labs/jbossesb/branches/JBESB_4_2_1_GA_CP/product/samples/quickstarts/helloworld_sql_action/jboss-esb.xml
   labs/jbossesb/branches/JBESB_4_2_1_GA_CP/product/samples/quickstarts/helloworld_sql_action/src/hsqldb/create.sql
Log:
bug:JBESB-1441
Use the timestamp column option.


Modified: labs/jbossesb/branches/JBESB_4_2_1_GA_CP/product/samples/quickstarts/helloworld_sql_action/jboss-esb.xml
===================================================================
--- labs/jbossesb/branches/JBESB_4_2_1_GA_CP/product/samples/quickstarts/helloworld_sql_action/jboss-esb.xml	2008-01-10 06:08:58 UTC (rev 17664)
+++ labs/jbossesb/branches/JBESB_4_2_1_GA_CP/product/samples/quickstarts/helloworld_sql_action/jboss-esb.xml	2008-01-10 06:09:46 UTC (rev 17665)
@@ -15,7 +15,7 @@
 				where-condition="DATA_COLUMN like 'data%'"
 					message-column="message"
           			message-id-column="UNIQUE_ID"
-          			insert-timestamp-column="insert_timestamp"
+          			insert-timestamp-column="TIMESTAMP_COL"
           		/>
           	</sql-bus>
           </sql-provider>

Modified: labs/jbossesb/branches/JBESB_4_2_1_GA_CP/product/samples/quickstarts/helloworld_sql_action/src/hsqldb/create.sql
===================================================================
--- labs/jbossesb/branches/JBESB_4_2_1_GA_CP/product/samples/quickstarts/helloworld_sql_action/src/hsqldb/create.sql	2008-01-10 06:08:58 UTC (rev 17664)
+++ labs/jbossesb/branches/JBESB_4_2_1_GA_CP/product/samples/quickstarts/helloworld_sql_action/src/hsqldb/create.sql	2008-01-10 06:09:46 UTC (rev 17665)
@@ -2,5 +2,6 @@
 (
 unique_id INTEGER GENERATED BY DEFAULT AS IDENTITY(START WITH 1) NOT NULL PRIMARY KEY,
 data_column VARCHAR(255) NOT NULL,
-status_col VARCHAR(255) NOT NULL
+status_col VARCHAR(255) NOT NULL,
+timestamp_col VARCHAR(255)
 );




More information about the jboss-svn-commits mailing list