Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道 SQLite 不支持设置不同的用户。我有一个要求,我需要阻止某些用户对 SQLite DB 执行 INSERTS/UPDATES。由于 SQLite 没有任何 GRANT/REVOKE 命令,除了更改文件权限外,还有其他方法可以设置对 DB 文件的不同访问级别。
谢谢。
没有内置在sqlite中,没有。
但是,您可以编写自己的访问控制。许多网络项目就是这种模式的一个例子。他们定期对数据库本身包含的用户记录进行身份验证。