Subject Re: [IBO] Current Equivalent to .AsInt64
Author Helen Borrie
At 10:09 PM 25/09/2004 +0000, you wrote:
>It still doesn't work. I added Variants to my uses clause but I am
>still getting a compiling error.
>
>I am using ASTA3IBObjectsServer and the following line will not compile:
>
>ftLargeInt: TIBOQuery(Query).ParamByName(Name).AsInt64 :=
>ParamList[i].AsLargeInt;
>
>AsInt64 is no longer a property of TIBOQuery.

AsInt64 is a method of TIB_Column. For TIBOQuery's Params you are working
with TFields, not TIB_Columns. Use AsLargeInt.

btw, if you are using Delphi 6 without upgrade pack 2, large integer
variant handling in TField descendants is broken.

Helen