deny users direct acces to tables

F

Fatboyslimro

Hi all
I want to deny users to enter information directly in the table ( through
"tables" tab in ADP ), and allow this only through forms.

I've observed that if I disable the select permission the table becomes
invisible but the form it's not working because it's using the select
command.

I'm not the programmer - I'm just the network admin.

thanks for any reply
 
S

Steve Jorgensen

The only way you can disable direct access to tables is by allowing access
only via stored procedures and views. Forms are not on the server, so you
can't give them access to the table without simply giving the user permission
to access the table. Of course, with an ADP front-end, even the stored
procedure technique will have problems unless you use all bound forms as
read-only and create unbound forms for updating data.

When you get to that point, it may be just as easy, and result in a more
maintainable application, to simply write Windows Forms programs in .NET.
With, you also have the option of controlling access using a middle-tier
rather than just using SQL Server security.
 

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