You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ibatis.apache.org by ro...@apache.org on 2005/03/08 03:41:11 UTC

svn commit: r156482 - in incubator/ibatis/trunk/cs/tutorial: Model/bin/Debug/sqlmap.config Tests/bin/Debug/sqlmap.config WebView/sqlmap.config

Author: roberto
Date: Mon Mar  7 18:41:10 2005
New Revision: 156482

URL: http://svn.apache.org/viewcvs?view=rev&rev=156482
Log:
~ Updated C# Tutorial SqlMap config files for relative resources

Modified:
    incubator/ibatis/trunk/cs/tutorial/Model/bin/Debug/sqlmap.config
    incubator/ibatis/trunk/cs/tutorial/Tests/bin/Debug/sqlmap.config
    incubator/ibatis/trunk/cs/tutorial/WebView/sqlmap.config

Modified: incubator/ibatis/trunk/cs/tutorial/Model/bin/Debug/sqlmap.config
URL: http://svn.apache.org/viewcvs/incubator/ibatis/trunk/cs/tutorial/Model/bin/Debug/sqlmap.config?view=diff&r1=156481&r2=156482
==============================================================================
--- incubator/ibatis/trunk/cs/tutorial/Model/bin/Debug/sqlmap.config (original)
+++ incubator/ibatis/trunk/cs/tutorial/Model/bin/Debug/sqlmap.config Mon Mar  7 18:41:10 2005
@@ -3,7 +3,7 @@
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
   xsi:noNamespaceSchemaLocation="SqlMapConfig.xsd">
 
-   <properties resource="/Resources/properties.xml"/>
+   <properties resource="../../Resources/properties.xml"/>
    
 	<settings>
 		<setting useStatementNamespaces="false"/>
@@ -16,7 +16,7 @@
 	</database>
 
 	<sqlMaps>
-		<sqlMap resource="/Resources/PersonHelper.xml"/>
+		<sqlMap resource="../../Resources/PersonHelper.xml"/>
 		<!-- sqlMap url="C:/projects/SourceForge/ibatisnet1/Tutorial2/Model/Resources/PersonHelper.xml"/ -->
 		<!-- Rem : If used as embedded Resources, just specify the name of each sqlMap file -->	
 	</sqlMaps>

Modified: incubator/ibatis/trunk/cs/tutorial/Tests/bin/Debug/sqlmap.config
URL: http://svn.apache.org/viewcvs/incubator/ibatis/trunk/cs/tutorial/Tests/bin/Debug/sqlmap.config?view=diff&r1=156481&r2=156482
==============================================================================
--- incubator/ibatis/trunk/cs/tutorial/Tests/bin/Debug/sqlmap.config (original)
+++ incubator/ibatis/trunk/cs/tutorial/Tests/bin/Debug/sqlmap.config Mon Mar  7 18:41:10 2005
@@ -21,7 +21,7 @@
 	</database>
 
 	<sqlMaps>
-		<sqlMap file="../../Resources/PersonHelper.xml" />
+		<sqlMap resource="../../Resources/PersonHelper.xml" />
 	</sqlMaps>
 
 </sqlMapConfig>

Modified: incubator/ibatis/trunk/cs/tutorial/WebView/sqlmap.config
URL: http://svn.apache.org/viewcvs/incubator/ibatis/trunk/cs/tutorial/WebView/sqlmap.config?view=diff&r1=156481&r2=156482
==============================================================================
--- incubator/ibatis/trunk/cs/tutorial/WebView/sqlmap.config (original)
+++ incubator/ibatis/trunk/cs/tutorial/WebView/sqlmap.config Mon Mar  7 18:41:10 2005
@@ -3,7 +3,7 @@
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
   xsi:noNamespaceSchemaLocation="SqlMapConfig.xsd">
 
-   <properties resource="/Resources/properties.xml"/>
+   <properties resource="./Resources/properties.xml"/>
    
 	<settings>
 		<setting useStatementNamespaces="false"/>
@@ -16,7 +16,7 @@
 	</database>
 
 	<sqlMaps>
-		<sqlMap resource="/Resources/PersonHelper.xml"/>
+		<sqlMap resource="./Resources/PersonHelper.xml"/>
 		<!-- Rem : If used as embedded Resources, just specify the name of each sqlMap file -->	
 	</sqlMaps>