SQL验证
我正在开发一个应用程序,在完成我的应用程序后,数据将存储在数据库中,数据库将由公司的系统管理员处理,他可能会更改数据我遇到问题,就像系统管理员将在我们处理数据库后处理数据库一样开发应用程序,数据库将由他处理,现在我想限制他修改数据,例如从数据库插入、更新、删除数据,
我该怎么做,
any1 帮助我解决这个问题
I am developing a application where the data will go and store in the database after completing my application database will be handle by the system administrator of the company he may change the data I have problem like the system administrator will take care of the database once we develop the application the database will be handled by him now i want to restrict him from modifying data like inserting,updating,deleting data from database
how can i do that
any1 help me on this
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您创建新用户:
请参阅:http://dev。 mysql.com/doc/refman/5.5/en/adding-users.html
您可以使用
GRANT
和REVOKE
授予和撤销对数据库的权限关键字参见:http://dev.mysql.com/doc/refman/5.5/en/grant .html
并且: http://dev.mysql.com/doc/refman/5.5 /en/revoke.html
If you create a new user:
See: http://dev.mysql.com/doc/refman/5.5/en/adding-users.html
You can grant and revoke privileges on your database by using the
GRANT
andREVOKE
keywordsSee: http://dev.mysql.com/doc/refman/5.5/en/grant.html
And: http://dev.mysql.com/doc/refman/5.5/en/revoke.html