Subject Re: [IBO] IB_Row.AsWideString?? Not Implemented??
Author Paul Vinkenoog
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