Subject Editing a TIB_Query
Author gsbrown@GerBreOwn.com
I have a TIB_Query component on a form that has the following SQL:
SELECT
GDATE
, GTIME
, GLEVEL
,Finger
,GEvent
, (select finger.finger
from finger
where
finger.idx_finger = glucose.finger) as luFinger
, (select gevent.gevent
from gevent
where gevent.idx_gevt = glucose.gevent) as luEvent
FROM GLUCOSE
for update

to that I have a DataSource component connected and to the DS I have
an TIB_Update bar. The bar only has the "Edit, Delete, Post & Cancel"
buttons visible. When I compile and run my app the Update bar is
greyed out and I cannot edit the data.

The embeded select statements are linked to 2 lookup tables. I tried
to follow the examples in the GSG but it looks like I am doing
something wrong.

Any ideas what it might be that I am missing????

Thanks,

Gerald S. Brown