You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ibatis.apache.org by gb...@apache.org on 2005/05/19 19:55:14 UTC

svn commit: r170975 - /incubator/ibatis/trunk/cs/docs/dataMapperGuide/src/en/working.xml

Author: gbayon
Date: Thu May 19 10:55:13 2005
New Revision: 170975

URL: http://svn.apache.org/viewcvs?rev=170975&view=rev
Log:
- Fixed doc for JIRA-66

Modified:
    incubator/ibatis/trunk/cs/docs/dataMapperGuide/src/en/working.xml

Modified: incubator/ibatis/trunk/cs/docs/dataMapperGuide/src/en/working.xml
URL: http://svn.apache.org/viewcvs/incubator/ibatis/trunk/cs/docs/dataMapperGuide/src/en/working.xml?rev=170975&r1=170974&r2=170975&view=diff
==============================================================================
--- incubator/ibatis/trunk/cs/docs/dataMapperGuide/src/en/working.xml (original)
+++ incubator/ibatis/trunk/cs/docs/dataMapperGuide/src/en/working.xml Thu May 19 10:55:13 2005
@@ -1168,7 +1168,7 @@
       a standard type parameter. <example>
           <title>A &lt;statement&gt; using standard type parameters</title>
 
-          <programlisting>&lt;statement id="insertProduct" parameterClass="System.Integer"&gt;
+          <programlisting>&lt;statement id="getProduct" parameterClass="System.Integer"&gt;
   select * from PRODUCT where PRD_ID = <emphasis role="blue">#value#</emphasis>
 &lt;/statement&gt;</programlisting>
         </example></para>
@@ -1203,7 +1203,7 @@
           <title>A &lt;statement&gt; using a Map or IDictionary for a
           parameterClass</title>
 
-          <programlisting>&lt;statement id="insertProduct" parameterClass="System.Collections.IDictionary"&gt;
+          <programlisting>&lt;statement id="getProduct" parameterClass="System.Collections.IDictionary"&gt;
   select * from PRODUCT
   where PRD_CAT_ID = <emphasis role="blue">#catId#</emphasis>
   and PRD_CODE = <emphasis role="blue">#code#</emphasis>