PDA

View Full Version : DB_Grid_Components


PoseFant
09-25-2001, 01:03 AM
I'm looking for a special component.

A DBGrid, where you can specify the dataset for each column.

Sometimes you have to get data from different base_tables.

I'm also looking for a DBGrid where you can specify the dataset for the base table, and then a foreign key in that base table to achieve relations.

I know this is possible to code, but I really suck when it comes to components.


thx in advance.


/Filip

MrBaseball34
09-25-2001, 02:46 AM
In this case, why not just use a TQuery component and use a
join in your query?

select t1.field1, t2.field1, t3.field1 from
table1 t1, table2 t2, table3 t3