are you using namespaces? if yes then you need to make it...
insert("Order.insertRow", row);
if your namespace is "Order"
Brandon
On Thu, 17 Mar 2005 22:44:26 -0800 (PST), Swati Singhal
<[EMAIL PROTECTED]> wrote:
> Hi,
>
> I have an Actionclass from where I instantiate my
> Service class which in turn gets me a DAO instance and
> calls a class where I say:
>
> daoManager.startTransaction();
> insert("insertRow", row);
> daoManager.endTransaction();
>
> Now, I have defined all my XML files containing the
> queries in sql-map-config.xml file like:
>
> <sqlMap
> resource="com/myibatis/dataaccess/persistence/sqlmapdao/sql/Shop.xml"/>
> <sqlMap
> resource="com/myibatis/dataaccess/persistence/sqlmapdao/sql/order.xml"/>
>
> What I want to know is, how does iBATIS know which of
> the 2 XML files it should look INTO for finding a
> statement named "insertRow" ??
>
> I have only one such XML file and have a statement by
> the name "insertRow" but am getting that
> "there is no statement by the name "insertRow" in this
> SqlMap"
>
> Any solutions?
>
> Thanks
>
>
> __________________________________
> Do you Yahoo!?
> Make Yahoo! your home page
> http://www.yahoo.com/r/hs
>