Possible a bug!

Discussion of open issues, suggestions and bugs regarding IBDAC (InterBase Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
mighty
Posts: 18
Joined: Thu 01 Jun 2006 11:35

Possible a bug!

Post by mighty » Tue 27 May 2008 10:04

Hi,
After installed IBDAC 2.50, my application doesn't work properly. I tested it and here is the result...

1. Set SQL as "SELECT SIRA, REPORTGROUP, REPORTCAPTION FROM MSREPORTS WHERE REPORTFORM = 'MAIN' ORDER BY REPORTGROUP"
2. Set Options.QueryRecCount to true
3. Set Active to true

... and get surprised :)

DDL of MSREPORTS
-------------------------------------------------------------------
CREATE TABLE msreports (
sira INTEGER NOT NULL,
reportname VARCHAR(100) NOT NULL,
reportgroup VARCHAR(100) NOT NULL,
reportcaption VARCHAR(100) NOT NULL,
reportform VARCHAR(100),
reporttype SMALLINT DEFAULT 0 NOT NULL,
reportsql BLOB SUB_TYPE 1 SEGMENT SIZE 80,
reportdesign BLOB SUB_TYPE 0 SEGMENT SIZE 80,
reportparams VARCHAR(100),
subefield VARCHAR(20),
yaziylafield VARCHAR(20),
xlstemplate BLOB SUB_TYPE 0 SEGMENT SIZE 80
);

Plash
Devart Team
Posts: 2844
Joined: Wed 10 May 2006 07:09

Post by Plash » Tue 27 May 2008 10:52

We have fixed this problem. The fix will be included in the next build of IBDAC.

davort
Posts: 25
Joined: Sat 20 Jan 2007 14:37

Post by davort » Tue 27 May 2008 15:07

Plash wrote:We have fixed this problem. The fix will be included in the next build of IBDAC.
I also have a problem with all queries, that include "order by" clause, whenever it includes column names. If I use numeric literals, it works fine.

So I had to rollback to previous versions of all *DAC libs (SDAC, ODAC, MyDAC and IbDAC ... ) ... :)

I shall wait until all works fine, and then try to use it together with UniDAC.

I know that you are going to fix it soon and am looking forward to using it! By my experience, it is the best DAC library I ever used!!! Keep up the good work!!!

8)

Post Reply