S
sjwopg
I am creating an application which will have 20+ users. In order to minimize
errors or record locking issues, I have created three tables for each record.
The users will enter/edit their fields without another user being in the same
record.
Table1 has a primary key. Tables 2 & 3 have primary keys, and a foreign key
that relates to table1.
I created a query joining Table1 to Table2 using the T1 primary to the T2
foreign, and joining Table1 to Tabel2 using the T1 primary to the T2 foreign.
This makes the query unupdateable. If I join T1 to T2, or T1 to T3, each
table is updateable. It is when I join the three tables as described above,
that the tables become unupdateable. I've tried a number of different
scenarios, but it seems that whenever I try to join Table1 to the other two
via the Table1 primary key, the query is unupdateable.
Any suggestions?
Thanks in advance,
Steve
errors or record locking issues, I have created three tables for each record.
The users will enter/edit their fields without another user being in the same
record.
Table1 has a primary key. Tables 2 & 3 have primary keys, and a foreign key
that relates to table1.
I created a query joining Table1 to Table2 using the T1 primary to the T2
foreign, and joining Table1 to Tabel2 using the T1 primary to the T2 foreign.
This makes the query unupdateable. If I join T1 to T2, or T1 to T3, each
table is updateable. It is when I join the three tables as described above,
that the tables become unupdateable. I've tried a number of different
scenarios, but it seems that whenever I try to join Table1 to the other two
via the Table1 primary key, the query is unupdateable.
Any suggestions?
Thanks in advance,
Steve