Subject | Re: [IBO] TIB_UpdateBar problem ... |
---|---|
Author | Geoff Worboys |
Post date | 2001-05-05T06:32:53Z |
Guillermo,
If the query is readonly no update actions are available and so all
updatebar buttons would be disabled. Could it be that your query is
read only because...
1. You have not included "FOR UPDATE" in your SQL, so it is likely
that the RequestLive property of the query is false.
and/or
2. The query is a joined selected, which usually means you need to
tell IBO which is the primary relation (KeyRelation property) in order
that IBO can build the required insert/update/delete statements.
HTH
Geoff Worboys
Telesis Computing
If the query is readonly no update actions are available and so all
updatebar buttons would be disabled. Could it be that your query is
read only because...
1. You have not included "FOR UPDATE" in your SQL, so it is likely
that the RequestLive property of the query is false.
and/or
2. The query is a joined selected, which usually means you need to
tell IBO which is the primary relation (KeyRelation property) in order
that IBO can build the required insert/update/delete statements.
HTH
Geoff Worboys
Telesis Computing