Author: gbayon Date: Sat Jul 9 07:46:57 2005 New Revision: 209948 URL: http://svn.apache.org/viewcvs?rev=209948&view=rev Log: Fixed IBATISNET-77
Providers.config need to begin with <providers xmlns="http://ibatis.apache.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://ibatis.apache.org http://ibatis.apache.org/xsd/providers.xsd"> Dao.Config need to begin with <daoConfig xmlns="http://ibatis.apache.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://ibatis.apache.org http://ibatis.apache.org/xsd/DaoConfig.xsd"> SqlMap.Config need to begin with <sqlMapConfig xmlns="http://ibatis.apache.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://ibatis.apache.org http://ibatis.apache.org/xsd/SqlMapConfig.xsd"> Mapping xml files need to begin with <sqlMap namespace="Account" xmlns="http://ibatis.apache.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://ibatis.apache.org http://ibatis.apache.org/xsd/SqlMap.xsd"> Modified: ibatis/trunk/cs/mapper/IBatisNet.Schemas/DaoConfig.xsd Modified: ibatis/trunk/cs/mapper/IBatisNet.Schemas/DaoConfig.xsd URL: http://svn.apache.org/viewcvs/ibatis/trunk/cs/mapper/IBatisNet.Schemas/DaoConfig.xsd?rev=209948&r1=209947&r2=209948&view=diff ============================================================================== --- ibatis/trunk/cs/mapper/IBatisNet.Schemas/DaoConfig.xsd (original) +++ ibatis/trunk/cs/mapper/IBatisNet.Schemas/DaoConfig.xsd Sat Jul 9 07:46:57 2005 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> -<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"> +<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:vs="http://schemas.microsoft.com/Visual-Studio-Intellisense" xmlns="http://ibatis.apache.org" targetNamespace="http://ibatis.apache.org" elementFormDefault="qualified" attributeFormDefault="unqualified" vs:friendlyname="iBATIS.NET DataAccess Configuration" vs:ishtmlschema="false" vs:iscasesensitive="true" vs:requireattributequotes="true" vs:defaultnamespacequalifier="" vs:defaultnsprefix="" > <xs:element name="context"> <xs:complexType> <xs:sequence>
