Bug in ZeosLib

Forum related to version 6.5.1 (alpha) and 6.6.x (beta) of ZeosLib's DBOs

Moderators: gto, cipto_kh, EgonHugeist

Post Reply
BasiL
Fresh Boarder
Fresh Boarder
Posts: 4
Joined: 04.09.2007, 07:55

Bug in ZeosLib

Post by BasiL »

ZEOS 6.6.0 & ZEOS 6.6.1
FB 2.0.1.12855
Delphi 7

Error in ZeosLib when using several tables. See to image.
You do not have the required permissions to view the files attached to this post.
Last edited by BasiL on 04.09.2007, 12:26, edited 1 time in total.
BasiL
Fresh Boarder
Fresh Boarder
Posts: 4
Joined: 04.09.2007, 07:55

Bug in ZeosLib

Post by BasiL »

Programe and database
You do not have the required permissions to view the files attached to this post.
Last edited by BasiL on 04.09.2007, 12:44, edited 1 time in total.
BasiL
Fresh Boarder
Fresh Boarder
Posts: 4
Joined: 04.09.2007, 07:55

Bug in ZeosLib

Post by BasiL »

But if use CAST in SELECT, then all well.

Code: Select all

select 1, CAST(L.PARAM02 AS CHAR(100))
  from TZAJAV Z
         left join TDOGOVOR D on d.ID=z.IDDogovor
         left join TANKETA_FIZ AF on af.ID=z.IDAnketa
         left join TANKETA AJ on aj.ID=z.IDAnketa,
       TLIZINGODATEL L
 where z.ID  = 1
Sorry for my poor english :-)
User avatar
cipto_kh
Senior Boarder
Senior Boarder
Posts: 83
Joined: 28.09.2005, 11:22
Location: Indonesia
Contact:

Post by cipto_kh »

Or try like this:

Code: Select all

  select L.PARAM02, 1, L.PARAM02 one
  from TZAJAV Z
         left join TDOGOVOR D on d.ID=z.IDDogovor
         left join TANKETA_FIZ AF on af.ID=z.IDAnketa
         left join TANKETA AJ on aj.ID=z.IDAnketa,
       TLIZINGODATEL L
 where z.ID  = 1
Yes, this is a serious bug. Can you add this bug into http://zeosbugs.firmos.at

thx
BasiL
Fresh Boarder
Fresh Boarder
Posts: 4
Joined: 04.09.2007, 07:55

Post by BasiL »

2cipto_kh

SELECT dynamic, so where will be this field is not known.
cipto_kh wrote:Yes, this is a serious bug. Can you add this bug into http://zeosbugs.firmos.at
http://zeosbugs.firmos.at/view.php?id=61
Post Reply