Recordset Not Updatable

E

Eddy

I have form that has a query as its control source. In trying to pull in
data from another table for the form I added the table to the query. With
the new table in the query I can no longer add data to the form. I get the
error "Recordset Not Updatable" Without the table in the query the
recordset is updatable, with it the recordset is not updatable.

Can anyone tell me where I can find out about this problem. Possible a
knowledge base article. To solve this problem and for future reference, I
would like to find out why the addition of the table makes the recordset
not updatable.

Thanks,
 
J

John Mishefske

Eddy said:
I have form that has a query as its control source. In trying to pull in
data from another table for the form I added the table to the query.
With the new table in the query I can no longer add data to the form. I
get the error "Recordset Not Updatable" Without the table in the query
the recordset is updatable, with it the recordset is not updatable.

Can anyone tell me where I can find out about this problem. Possible a
knowledge base article. To solve this problem and for future reference,
I would like to find out why the addition of the table makes the
recordset not updatable.

Evidently the addition of that table prevents Jet from knowing which record
to update when a change is made. Calculated fields, UNION or GROUPing queries
and duplicate records can make a query not updateable.

The recordset has a Updateable property that you can check to find out.

Here is some reading material:
http://www.microsoft.com/technet/prodtechnol/sql/proddocs/msjet/jetch04.asp
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top