Subject Re: [IBO] Two Keylinks error
Author Helen Borrie
At 04:48 AM 14/06/2003 +0000, you wrote:
>Two Keylinks error
>
>I have a table1 where the primary key are col1 and col2. In my
>TIB_query.keylinks properties = col1, col2, when I prepare it, its
>says it a invalid key? How do I suppose to fill the keylinks property?

Not comma-separated. KeyLinks is a TIB_Stringlist (TStrings
descendant). One string per Keylink.


>But I have try filling up the keylinks property by this way....
>
>col1
>col2

That's the correct way.


>instead of putting them in the same line seperated by a comma, I put
>them in a seperate line. Is there any difference when I vice versa
>the order of the column?

I don't think the order matters, but it makes sense to use the same order
as you have them in the output set.

The Keylinks columns need to be present in the dataset.

Helen