我试图在cakephp中使用连接进行查询,但我想获得更多文件,
这里查询sql:
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://www.example.com/type"
targetNamespace="http://www.example.com/type" elementFormDefault="unqualified" >
<xs:element name="serviceResponse" type="MyServiceResponse"/>
<xs:complexType name="MyServiceResponse">
<xs:all>
<xs:element name="Body" type="Body" minOccurs="0" />
</xs:all>
</xs:complexType>
<xs:complexType name="Body">
<xs:all>
<xs:element name="Car" type="Car" minOccurs="0"/>
</xs:all>
</xs:complexType>
<xs:complexType name="Car">
<xs:all>
<xs:element name="Brand" type="xs:string" minOccurs="0"/>
<xs:element name="Color" type="xs:string" minOccurs="0"/>
</xs:all>
</xs:complexType>
</xs:schema>
请帮我在cakephp中进行查询:
ClassRegistry ::的init(&#39;降神&#39;) - &GT;发现(&#39;所有&#39; ...
答案 0 :(得分:1)