Subject | Re: [IBO] Unidirectional - IBO 5.9.1 Build 2522 |
---|---|
Author | Patrick Marten |
Post date | 2017-05-22T09:06:52Z |
This bug still exists in IBO 5.9.3 Build 2577 Beta.
Couldn't test the current beta release, because our subscription expired recently.
From: "'IBO Support List' supportlist@... [IBObjects]" <IBObjects@yahoogroups.com>
To: IBObjects@yahoogroups.com
Sent: Saturday, November 19, 2016 8:40 PM
Subject: RE: [IBO] Unidirectional - IBO 5.9.1 Build 2522
I will get a hotfix out for this early
next week.
Thank you for reporting this.
Kind regards,
Jason Wharton
From: IBObjects@yahoogroups.com
[mailto: IBObjects@yahoogroups.com ]
Sent: Tuesday, November 08, 2016 6:04 AM
To: IBObjects@yahoogroups.com
Subject: [IBO] Unidirectional - IBO 5.9.1 Build 2522
Sent: Tuesday, November 08, 2016 6:04 AM
To: IBObjects@yahoogroups.com
Subject: [IBO] Unidirectional - IBO 5.9.1 Build 2522
Good Morning,
Used the component "ibo5.7.13.2411" and migrate to the latest version "ibo5.9.1.b2522" property of the query Unidirectional stopped working.
Now to to set the property "Unidirectional = true" data repeat.
The following example...
procedure TForm1.Button1Click(Sender: TObject);
begin
qCustomer.Active := false;
qCustomer.SQL.Text := 'select * from citys';
qCustomer.Unidirectional := True;
qCustomer.Active := true;
qCustomer.first;
while not qCustomer.eof do
begin
ListBox1.Items.Add(qCustomer.FieldByName('name_city').AsString);
qCustomer.next;
end;
end;
If the property is "Unidirectional = true" values are:
Alabama
Alaska
Arizona
Arkansas
California
If the property is "Unidirectional = false" values are:
Alabama
Alabama
Alabama
Alabama
Alabama
Att
Jonathan Fabricio Seibel