Skip to Main Content

Java Database Connectivity (JDBC)

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

WHAT AM I MISSING? sqlMapConfig.xml

800340May 16 2006 — edited Dec 28 2006
Newbie to iBatis: I have this sqlMapConfig.xml but for some reason it generates the following error: Element "sqlMapConfig" requires additional elements.

(to be more mercise, it says:
Caused by: com.ibatis.common.exception.NestedRuntimeException: Error occurred. Cause: com.ibatis.common.xml.NodeletException: Error parsing XML. Cause: org.xml.sax.SAXParseException: Element "sqlMapConfig" requires additional elements.)


this is my file, anyone?

<?xml version="1.0" encoding="UTF-8" ?>

<!DOCTYPE sqlMapConfig PUBLIC "-//ibatis.apache.org//DTD SQL Map Config 2.0//EN"
"http://ibatis.apache.org/dtd/sql-map-config-2.dtd">

<sqlMapConfig>



<transactionManager type="JDBC">
<dataSource type="SIMPLE">
<property value="com.mysql.jdbc.Driver" name="JDBC.Driver"/>
<property value="jdbc:mysql://localhost/TA" name="JDBC.ConnectionURL"/>
<property value="root" name="JDBC.Username"/>
<property value="root#23" name="JDBC.Password"/>
</dataSource>
</transactionManager>


<sqlMap resource="com/jhexagon/ibatis/xml/UserIdentity.xml"/>
<sqlMap resource="com/jhexagon/ibatis/xml/Files.xml"/>
<sqlMap resource="com/jhexagon/ibatis/xml/TA.xml"/>
<sqlMap resource="com/jhexagon/ibatis/xml/Target.xml"/>

</sqlMapConfig>
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jan 25 2007
Added on May 16 2006
1 comment
568 views