Firebird 3.0 and Code Typhon: Boolean field error in Field Editor

The forum for ZeosLib 7.2 Report problems. Ask for help, post proposals for the new version and Zeoslib 7.2 features here. This is a forum that will be edited once the 7.2.x version goes into RC/stable!!

My personal intention for 7.2 is to speed up the internals as optimal a possible for all IDE's. Hope you can help?! Have fun with testing 7.2
Post Reply
User avatar
tkszeos
Junior Boarder
Junior Boarder
Posts: 35
Joined: 26.08.2005, 21:45

Firebird 3.0 and Code Typhon: Boolean field error in Field Editor

Post by tkszeos »

Hi,
I have a problem with the Boolean fields of Firebird 3.0.
I use Code Typhon Ver. 6.30 on Windows 10 64.
I have created a database with the following table:

Code: Select all

CREATE TABLE TEST_TABLE (
BOOLEAN_FIELD BOOLEAN NOT NULL,
OTHER_FIELD SMALLINT NOT NULL);
In CT I create a Form on which I add ZConnection and ZReadOnlyQuery components. The ZReadOnlyQuery SQL is: 'SELECT * FROM TEST_TABLE'

In the field editor the BOLEAN_FIELD field instead of being TBooleanField is TStringField type as can be seen from the attached image.
Is it a Zeosdbo bug?

Thank you
You do not have the required permissions to view the files attached to this post.
Fr0sT
Zeos Dev Team
Zeos Dev Team
Posts: 280
Joined: 08.05.2014, 12:08

Re: Firebird 3.0 and Code Typhon: Boolean field error in Field Editor

Post by Fr0sT »

Confirmed in DXE2. I'll check this.
User avatar
tkszeos
Junior Boarder
Junior Boarder
Posts: 35
Joined: 26.08.2005, 21:45

Re: Firebird 3.0 and Code Typhon: Boolean field error in Field Editor

Post by tkszeos »

I noticed that if the SQL is

Code: Select all

SELECT OTHER_FIELD, BOOLEAN_FIELD FROM TEST_TABLE
the field types, in the field editor, are correct
Fr0sT
Zeos Dev Team
Zeos Dev Team
Posts: 280
Joined: 08.05.2014, 12:08

Re: Firebird 3.0 and Code Typhon: Boolean field error in Field Editor

Post by Fr0sT »

Check r4063, the issue should be fixed
User avatar
tkszeos
Junior Boarder
Junior Boarder
Posts: 35
Joined: 26.08.2005, 21:45

Re: Firebird 3.0 and Code Typhon: Boolean field error in Field Editor

Post by tkszeos »

:thanks:
Post Reply