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/04/23 07:32:14 UTC

svn commit: r767831 - in /incubator/stonehenge/trunk/stocktrader/php/resources: conf/database_config.xml db_scripts/mysql/DBCreate.sql

Author: shankar
Date: Thu Apr 23 07:32:14 2009
New Revision: 767831

URL: http://svn.apache.org/viewvc?rev=767831&view=rev
Log:
changing default password to yyy

Modified:
    incubator/stonehenge/trunk/stocktrader/php/resources/conf/database_config.xml
    incubator/stonehenge/trunk/stocktrader/php/resources/db_scripts/mysql/DBCreate.sql

Modified: incubator/stonehenge/trunk/stocktrader/php/resources/conf/database_config.xml
URL: http://svn.apache.org/viewvc/incubator/stonehenge/trunk/stocktrader/php/resources/conf/database_config.xml?rev=767831&r1=767830&r2=767831&view=diff
==============================================================================
--- incubator/stonehenge/trunk/stocktrader/php/resources/conf/database_config.xml (original)
+++ incubator/stonehenge/trunk/stocktrader/php/resources/conf/database_config.xml Thu Apr 23 07:32:14 2009
@@ -19,7 +19,7 @@
 <config>
 	<server>127.0.0.1,1433</server>
 	<user>trade</user>
-	<password>trade</password>
+	<password>yyy</password>
 	<database>StockTraderDB</database>
 	<type>mssql</type>
 </config>

Modified: incubator/stonehenge/trunk/stocktrader/php/resources/db_scripts/mysql/DBCreate.sql
URL: http://svn.apache.org/viewvc/incubator/stonehenge/trunk/stocktrader/php/resources/db_scripts/mysql/DBCreate.sql?rev=767831&r1=767830&r2=767831&view=diff
==============================================================================
--- incubator/stonehenge/trunk/stocktrader/php/resources/db_scripts/mysql/DBCreate.sql (original)
+++ incubator/stonehenge/trunk/stocktrader/php/resources/db_scripts/mysql/DBCreate.sql Thu Apr 23 07:32:14 2009
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-grant all on *.* to 'trade'@'localhost' identified by 'trade';
+grant all on *.* to 'trade'@'localhost' identified by 'yyy';
 create database StockTraderDB;