Stored Queries for better Security

  • Thread starter Charles D Clayton Jr
  • Start date
C

Charles D Clayton Jr

I was recently reading in "Access Cookbook" about storing your queries
as SQL in a table for better security (pp 55-56). The idea is to take
the SQL of your query and put it in a table and then make a function
that will retrieve the SQL and assigning it to your Form's/Report's
RecordSource using the "On Open" Event. Consequently, no one ever
sees your queries except through code because you do not have an saved
queries. Further security would be achieved by storing them in a
library database. Mr Litwin (the author of this chapter) notes some
dangers and that it takes slightly longer to compile the SQL and run
it as opposed to using saved queries but the payoff is that no one
sees your queries.
What do you think about this?

Charles D Clayton Jr
 
J

Joan Wild

You could also set the recordsources of your forms/reports to SQL
statements, rather than saved queries. If you distribute the database as a
mde, then they'll never see these sql statements.
 

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