我可以将 Windows 小工具中的记录保存在文件或其他存储(数据库等)中吗?

发布于 2024-07-07 20:04:18 字数 205 浏览 7 评论 0原文

我计划创建一个简单的小工具来创建待办事项列表应用程序。 这仅用于练习和探索 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

橘虞初梦 2024-07-14 20:04:18

安装后,小工具将以登录用户的所有权限运行。 因此,您应该能够访问本地文件系统并实例化 ADO 等 COM 对象以连接到数据库。

这里的小伙子编写了一个小工具设置持久性管理器,允许小工具在侧边栏中卸载和重新安装之间保存其设置。 他使用 Scripting.FileSystemObject 将设置写入文件:

http://channel9.msdn.com/playground/Sandbox/231595/


这个为了了解小工具的安全性,也值得一读:

http://msdn.microsoft.com/ en-us/library/aa965881(VS.85).aspx

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:

http://channel9.msdn.com/playground/Sandbox/231595/

This is also worthwhile reading to understand gadget security:

http://msdn.microsoft.com/en-us/library/aa965881(VS.85).aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文