From: <cd...@ar...> - 2002-12-03 04:06:59
|
Firstly, thannks for the great driver. It's good and it's getting better. I have a DataSet that has been populated from the firebird driver and when I extract the xml schema it says that the blob field is limited to 8 characters. The blob field, XBLOB has a segment size of 80 and a subtype of 1, which I think means text. Is this a bug, or am I doing something wrong? I can provide more information if necessary. Christoph ----- <?xml version="1.0" encoding="utf-16"?> <xs:schema id="NewDataSet" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xs:element name="NewDataSet" msdata:IsDataSet="true" msdata:Locale="en-AU"> <xs:complexType> <xs:choice maxOccurs="unbounded"> <xs:element name="testie"> <xs:complexType> <xs:sequence> <xs:element name="XLONG" type="xs:int" /> <xs:element name="XCHAR" minOccurs="0"> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="10" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="XVARCHAR" minOccurs="0"> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="255" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="XDATE" type="xs:dateTime" minOccurs="0" /> <xs:element name="XDECIMAL" type="xs:decimal" minOccurs="0" /> <xs:element name="XBLOB" minOccurs="0"> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="8" /> </xs:restriction> </xs:simpleType> </xs:element> </xs:sequence> </xs:complexType> </xs:element> </xs:choice> </xs:complexType> <xs:unique name="Constraint1" msdata:PrimaryKey="true"> <xs:selector xpath=".//testie" /> <xs:field xpath="XLONG" /> </xs:unique> </xs:element> </xs:schema> ------------------------------------------------- This mail sent through IMP: http://horde.org/imp/ |