Hello,
I must doing something wrong but 'EnableComposites = true' on PgConnection is NOT creating separate fields for every type on composite.
I have the simplest example:
SELECT ROW(1.67, 'text', 2.45) AS tttotal
I can select tttotal field on a dbedit, but I cannot access to subfields in the row (I don't know how to do it).
Can sombody point me in the right direction ?
Greetings.
Enable Composites.
Field count and datatypes are not fixed, and can differ between records. For example:
The first record has 5 subfields, the second record has 3 subfields.
Code: Select all
select row(1,2,3,4,5)
union all
select row(1,'abc',3)