iBatis.Net SQL Server 紧凑版 3.5
我想将我们的数据库之一从 SQL Server Express 迁移到 SQL Server Compact 3.5。 我正在使用 iBatis.Net,但不知道providers.config 必须是什么样子才能访问 SQL CE 3.5。
谁能帮我解决这个问题吗?
谢谢 约翰
I want to migrate one of our databasis from SQL Server Express to SQL Server Compact 3.5.
I'm using iBatis.Net but do not know what the providers.config must look like for me to be able to access SQL CE 3.5.
Can anyone help me out with this?
Thanks
Johan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
嗯,我花了一天左右的时间为一个宠物项目做这件事。我能够在 .Net Framework 4.0 上使用 Sql Server Compact 3.5 和 iBatis.Net 1.6.2 来实现此功能。如果您希望它在不同版本上运行,则需要更新parameterDbTypeClass 属性的Version 和PublicKeyToken。
您只需将以下内容添加到您的provider.config 文件中。
Well I spent a day or so working on this for a pet project. I was able to get this working with Sql Server Compact 3.5 and iBatis.Net 1.6.2 on .Net Framework 4.0. If you wanted it to run on a different version you'll need to update the Version and PublicKeyToken of the parameterDbTypeClass attribute.
You just need to add the following to your provider.config file.
对于它的价值,这是我对 SQL CE 4.0 的了解(大部分是从之前的答案中提取的,只是更新了版本):
For what it's worth, here's what I have for SQL CE 4.0 (mostly pulled from the previous answer, just updated with version):