closerwalk
New member
- Local time
- Today, 09:02
- Joined
- Mar 1, 2010
- Messages
- 1
Here is the problem. I created a new .adp pointed it to the SQL server and created the database and tables. The table structure below as a sample. My problem is that one-to-many relationships are not working correctly or I should say not updatable. What am I doing wrong?
TABLE ONE ------------------
id (pk) (numeric)
first name (text)
last name (text)
destination_id (numeric) (fk)
TABLE TWO ........................
id (pk) (numeric)
destination (text)
RELATIONSHIPS
one to many
table two ID --->> table one destination_id
QUERY
tableone first name lastname destination_id table two destination
When I try to add a record to the query its a no go. It will not allow me to insert new records. Does anyone know why?
Mind you this scenerio works in a acceess db file mdb perfectly.
Thanks in advance,
Ken
TABLE ONE ------------------
id (pk) (numeric)
first name (text)
last name (text)
destination_id (numeric) (fk)
TABLE TWO ........................
id (pk) (numeric)
destination (text)
RELATIONSHIPS
one to many
table two ID --->> table one destination_id
QUERY
tableone first name lastname destination_id table two destination
When I try to add a record to the query its a no go. It will not allow me to insert new records. Does anyone know why?
Mind you this scenerio works in a acceess db file mdb perfectly.
Thanks in advance,
Ken