>1. Money type is seen has a float. Delphi complains when trying to post
Use the decimal type from 6.5.x
>2. Int8 is seen as a 17 byte string
>3. float4 is seens as using 8 bytes (as float8)
How are you viewing this data? Delphi provides casting methods
(AsString,AsFloat,etc) to convert a fields raw data to an appropriate data
type for your app.
f := Dataset.FieldByName('SomeField').AsFloat;
Ken