VS 2010 中的 SQLite 连接?
我想添加这样的连接
我查看了System.Data.SQLite页面,它似乎只支持2005/2008。有没有办法让 VS 2010 支持 SQLite 连接?
I want to add a connection like this
I looked at the System.Data.SQLite page and it seems it only supports 2005/2008. Is there a way to get VS 2010 to support SQLite connections?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
VS2010确实支持SQLite(我现在正在使用它)。如果您有完整版本,则可以使用 GUI,否则您需要使用 SQL 手动设置数据库。
我刚刚开始在 SQLite 中使用 CoolStorage ORM,使用起来非常棒。
您可能需要在 app.config 文件中添加以下代码
VS2010 does support SQLite (I'm using it now). If you have the Full Version you can use the GUI otherwise you need to set the database up manually with SQL.
I have just started to use the CoolStorage ORM with SQLite, it is great to work with.
You may require the following code in your app.config file
通过将 SQLiteDataViewSupport2008.xml 复制到 SQLiteDataViewSupport2010.xml 来安装它,尽管 2010 不受官方支持,但它似乎工作得很好。奇怪的是,2010 年已经过去这么久了。
Got it installed by copying SQLiteDataViewSupport2008.xml to SQLiteDataViewSupport2010.xml and it seems to be working perfectly fine even though 2010 isn't officially supported. Which is weird for how long 2010 has been out for.