First I really don't know a correct title...
I have 3 tables, that should be connected to each other. But something goes wrong with the thirth table. I really don't see what I do wrong. Maybe one of you can help me!
Tbl1:
ID (autonumber)
customer (number, long integer)
conn_A (number, long integer)
(and a few minor important fields)
(customer is to connect with a customer-table)
tbl2:
ID (autonumber)
conn_A (number, long integer)
Translation (text)
tbl3:
ID (autonumber)
conn_A (number, long integer)
Conn_B (text)
Conn_B is to connect with another table (no problem with that).
The values: (of course started with an automatically ID-number) (to make it a bit easier to read I added a "C","A", or "B" before the number..)
tbl1:
c1 A1
c1 A2
c1 A3
c2 A1
c2 A2
c3 A2
c4 A1
c4 A2
c4 A3
tbl2:
A1 - txt
A2 - txt2
A3 - txt3
tbl3:
A1 - B1
A1 - B2
A2 - B3
A2 - B4
A2 - B5
A3 - B6
A3 - B7
I can connect tbl1 and tbl2 (one to more-relation). I can use it in queries, I can change data via those queries.
The same for tbl2 and tbl3 (again one to more).
But when I try to connect tbl1, tbl2 and tbl3 in one query I get the correct data, but I cannot change data. So I get a non-updateable recordset.
What do I do wrong? And more important: how to correct it?
Thanks for your help!
I have 3 tables, that should be connected to each other. But something goes wrong with the thirth table. I really don't see what I do wrong. Maybe one of you can help me!
Tbl1:
ID (autonumber)
customer (number, long integer)
conn_A (number, long integer)
(and a few minor important fields)
(customer is to connect with a customer-table)
tbl2:
ID (autonumber)
conn_A (number, long integer)
Translation (text)
tbl3:
ID (autonumber)
conn_A (number, long integer)
Conn_B (text)
Conn_B is to connect with another table (no problem with that).
The values: (of course started with an automatically ID-number) (to make it a bit easier to read I added a "C","A", or "B" before the number..)
tbl1:
c1 A1
c1 A2
c1 A3
c2 A1
c2 A2
c3 A2
c4 A1
c4 A2
c4 A3
tbl2:
A1 - txt
A2 - txt2
A3 - txt3
tbl3:
A1 - B1
A1 - B2
A2 - B3
A2 - B4
A2 - B5
A3 - B6
A3 - B7
I can connect tbl1 and tbl2 (one to more-relation). I can use it in queries, I can change data via those queries.
The same for tbl2 and tbl3 (again one to more).
But when I try to connect tbl1, tbl2 and tbl3 in one query I get the correct data, but I cannot change data. So I get a non-updateable recordset.
What do I do wrong? And more important: how to correct it?
Thanks for your help!