Subject | Re: [IBO] IB_Row.AsWideString?? Not Implemented?? |
---|---|
Author | allencasteran |
Post date | 2004-01-21T22:22:36Z |
--- In IBObjects@yahoogroups.com, Paul Vinkenoog <paul@v...> wrote:
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.
> Hi Allen,Paul,
>
> > 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
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.