Silverlight 4 与 SQLite 或替代方案
我正在制作一个 Silverlight 应用程序,但我认为简单的东西实际上并非如此。
我需要创建一个应用程序,其中本地数据库存储在 Silverlight 应用程序可以连接到的 Web 服务器上,并且每当用户访问该应用程序时都将允许执行 sql 查询。主要用途是注册、登录和事件注册。
我尝试过社区 SQLite:http://code.google.com/p/csharp-sqlite /
但是很难让它与 Silverlight 一起工作,我的猜测是由于文档不完善。我已经创建了一个包含大量工作的项目,因此我只想将我的 SQLite 代码实现到其中。
谁能帮忙
谢谢。
I am making a Silverlight app and what I considered something straight-forward really isn't.
I am in need to create a application where a local database is stored on the web server where the Silverlight application can connect to and whenever a user goes on the application will allow sql queries to be carried out. Main use is Registration, login and event registration.
I have tried the Community SQLite: http://code.google.com/p/csharp-sqlite/
But had trouble getting it to work with Silverlight, my guess is due to poor documentation. I already have made a project containing a lot of work so I just want to implement my SQLite code into that.
Can anyone help
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您希望 Silverlight 应用程序具有本地存储数据库,请查看 Sterling。
如果您希望 Silverlight 应用程序查询集中式服务器端数据库,则需要通过 WCF 公开您的数据库。 RIA 服务 可能是最简单的实现。
If you want your Silverlight application to have a LOCAL storage database, check out Sterling.
If you want your Silverlight application to query a centralized, server-side database, then you need to expose your database via WCF. RIA services is probably the easiest implementation.