Securing Append Query

  • Thread starter Thread starter Guest
  • Start date Start date
You can do a lot to hide the db window, set custom menus/toolbars etc so
that the user can't get to the design of your append query, but I'm
wondering even if they did, all they can do is read it.

However, if you create a RWOP query for every table in your database, you
can then run the append in code.

INSERT INTO RWOPQuery SELECT ....
 
Back
Top