update problem

  • Thread starter Thread starter Art Vandaley
  • Start date Start date
A

Art Vandaley

Hi,

I would like to change (update) Data of a field of an external table which
belongs to a
database located in the server. The address is something like:
\\server\folder\md1.mdb . Let's say value of any row of field1 will be
updated. How can
I write the code? Regards.
 
Use the IN clause in your Update Query to specify the target MDB in which
the Table to be updated locates.

Check the IN Clause in the JET SQL Reference section of Access Help.

If you want to run the Update Query by VBA code, you can use the OpenQuery
Method or the Execute Method.

Check Access VB Help on these 2 methods.
 

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

Back
Top