You are viewing a plain text version of this content. The canonical link for it is here.
Posted to stonehenge-commits@incubator.apache.org by sh...@apache.org on 2009/03/11 06:54:14 UTC

svn commit: r752393 - /incubator/stonehenge/trunk/stocktrader/php/resources/db_scripts/InsertScript.sql

Author: shankar
Date: Wed Mar 11 06:54:13 2009
New Revision: 752393

URL: http://svn.apache.org/viewvc?rev=752393&view=rev
Log:
inserting records from clienttoBS and BStoOPS tables

Modified:
    incubator/stonehenge/trunk/stocktrader/php/resources/db_scripts/InsertScript.sql

Modified: incubator/stonehenge/trunk/stocktrader/php/resources/db_scripts/InsertScript.sql
URL: http://svn.apache.org/viewvc/incubator/stonehenge/trunk/stocktrader/php/resources/db_scripts/InsertScript.sql?rev=752393&r1=752392&r2=752393&view=diff
==============================================================================
--- incubator/stonehenge/trunk/stocktrader/php/resources/db_scripts/InsertScript.sql (original)
+++ incubator/stonehenge/trunk/stocktrader/php/resources/db_scripts/InsertScript.sql Wed Mar 11 06:54:13 2009
@@ -22,3 +22,9 @@
      VALUES ('RUBY_OPSSEC','http://localhost:3005/OrderServiceMsec');
 INSERT INTO [StockTraderDB].[dbo].[DBCONFIG]([DBNAME],[HOSTNAME],[PORT],[ACTIVE])
      VALUES ('MSSQL', '127.0.0.1', 1433, 'Y');
+INSERT INTO [StockTraderDB].[dbo].[CLIENTTOBS]([CLIENT],[BS])
+     VALUES ('PHP_CLIENT','PHP_BS');
+INSERT INTO [StockTraderDB].[dbo].[BSTOOPS]([BS],[OPS])
+	 VALUES ('PHP_BS', 'PHP_OPS');
+
+