Subject RE: [IBO] Re: Unexpected column alignment! - IBODataset.pas line 5569
Author IBO Support List
This is fixed in Build 46.

Thanks,
Jason

-----Original Message-----
From: IBObjects@yahoogroups.com [mailto:IBObjects@yahoogroups.com] On Behalf
Of fabricio_matos
Sent: 26 March 2012 04:57 PM
To: IBObjects@yahoogroups.com
Subject: [IBO] Re: Unexpected column alignment! - IBODataset.pas line 5569

Delphi 2010 - IBO - 4.9.10 = OK
Delphi XE2 - IBO - 4.9.14 Build 44 = Error

--- In IBObjects@yahoogroups.com, "fabricio_matos" <fcmatos@...> wrote:
>
> The problem occurs whenever I appoint the fields.
> Samples:
> SELECT C_NOME FROM PESSOAS = OK
> SELECT C_NOME AS TITULO = OK
> SELECT C_NOME AS "titulo" = OK
> SELECT C_NOME AS "título" = ERROR
>
> Error occurs when the field name has accents
>
> --- In IBObjects@yahoogroups.com, "IBO Support List" <supportlist@> wrote:
> >
> > I can!
> >
> > Please send me more details.
> > Preferably a stand alone sample app.
> >
> > Jason
> >
> > -----Original Message-----
> > From: IBObjects@yahoogroups.com [mailto:IBObjects@yahoogroups.com] On
Behalf
> > Of fabricio_matos
> > Sent: 26 March 2012 03:05 PM
> > To: IBObjects@yahoogroups.com
> > Subject: [IBO] Re: Unexpected column alignment! - IBODataset.pas line
5569
> >
> > Delphi XE2 - Enterprise
> > IBO 4.9.14 Build 44
> > Firebird 1.5
> >
> > --- In IBObjects@yahoogroups.com, "fabricio_matos" <fcmatos@> wrote:
> > >
> > > Error (Unexpected column alignment! - IBODataset.pas line 5569) when
try
> > open this Query:
> > >
> > > with qrConsulta do begin
> > > SQL.Clear;
> > > SQL.Add('select C_NOME AS "Título" from Pessoas');
> > > Open;
> > > end;
> > >
> > > Can anyone help?