Subject Re: [IBO] IB_Row.AsWideString?? Not Implemented??
Author allencasteran
--- In IBObjects@yahoogroups.com, Paul Vinkenoog <paul@v...> wrote:
> Hi Allen,
>
> > I need to store WideString data, but these methods are not
> > implemented in my 4.3Aa version. I thought I saw someone mention
> > earlier that they were using .AsWideString. What's Up??
>
> AsWideString is a property of TIB_Column, not of TIB_Row, just like
> the other AsWhatever props.
>
> So if you have a row ARow, you can access
>
> ARow.ByName( 'MyFieldName' ).AsWideString
>
> Or starting with a dataset (query, cursor, ...)
>
> MyDataset.FieldByName( 'MyFieldName' ).AsWideString
>
> Greetings,
> Paul Vinkenoog

Paul,

Thanks but here is the implementation (?) of that method from my
version of IBO (4.3Aa)

function TIB_Column.GetAsWideString: widestring;
begin
raise Exception.Create( 'Not implemented at this time.' );
end;


Allen.