security on form [message #244870] |
Thu, 14 June 2007 07:06 |
hany_marawan
Messages: 198 Registered: April 2005 Location: Cairo - Egypt
|
Senior Member |
|
|
Hello
I built a customized form and put it in the application.
I want giving an different authorities to the use, i.e someone can enter data only the other can query only the third can update only..etc.
How can I do this.
Thanks
|
|
|
Re: security on form [message #244902 is a reply to message #244870] |
Thu, 14 June 2007 09:29 |
|
Littlefoot
Messages: 21823 Registered: June 2005 Location: Croatia, Europe
|
Senior Member Account Moderator |
|
|
By granting required privileges on the table, such as
GRANT SELECT ON form_table TO scott;
GRANT INSERT ON form_table TO mike;
GRANT UPDATE ON form_table TO jenny;
|
|
|