我可以将 Windows 小工具中的记录保存在文件或其他存储(数据库等)中吗?
我计划创建一个简单的小工具来创建待办事项列表应用程序。 这仅用于练习和探索 Windows Gadget。 如何将值存储在数据库中? 我尽可能不希望设置本地 http 处理程序文件作为将值存储到文件或数据库的方法。
注意:我用 html 和 javascript 标记它,因为我知道它使用了这些。
I'm planning to create a simple gadget to create a TO DO list application. This is just for practice and to explore Windows Gadget. How can I store the values in the database? As much as possible, I don't want to set up a local http handler file to be a means to store value to file or database.
Note: I tag this with html and javascript since I'm aware it uses such.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
安装后,小工具将以登录用户的所有权限运行。 因此,您应该能够访问本地文件系统并实例化 ADO 等 COM 对象以连接到数据库。
这里的小伙子编写了一个小工具设置持久性管理器,允许小工具在侧边栏中卸载和重新安装之间保存其设置。 他使用 Scripting.FileSystemObject 将设置写入文件:
这个为了了解小工具的安全性,也值得一读:
Once installed, gadgets run with all the permissions of the logged in user. So you should be able to access the local file system and instantiate COM objects such as ADO to connect to a database.
The chap here wrote a gadget settings persistence manager to allow gadgets to save their settings between being uninstalled and re-installed in the sidebar. He uses the
Scripting.FileSystemObject
to write out settings to a file:This is also worthwhile reading to understand gadget security: