Page 1 of 1
TOraXMLField does not return proper FieldType
Posted: Tue 30 Mar 2010 10:40
by upscene
Hi,
In Delphi 2009, I get returned "out of bounds (108)" on TOraXMLField.Datatype
This seems wrong.
With regards,
Martijn Tonies
Upscene Productions
Posted: Wed 31 Mar 2010 09:49
by bork
Hello
Delphi enumeration TFieldType doesn't have field type for XML fields. So for these fields we use our own type that is not a member of the TFieldType enumeration. But we don't get situation when this type call error "out of bounds (108)". To resolve this issue we need to learn the lines of your code that result in arising this error.
Posted: Wed 31 Mar 2010 09:57
by upscene
bork wrote:Hello
Delphi enumeration TFieldType doesn't have field type for XML fields. So for these fields we use our own type that is not a member of the TFieldType enumeration. But we don't get situation when this type call error "out of bounds (108)". To resolve this issue we need to learn the lines of your code that result in arising this error.
Well, that's what the debugger shows me...
In my opinion, you should return -something- that is valid in Delphi TFieldType...
Posted: Thu 01 Apr 2010 07:34
by bork
Sorry, we already know about this inconvenience. We are searching the ways to fix it.