IronRuby 中 SQLite-ruby 的指导
让 SQLite-ruby 在 IronRuby 中工作的方法是什么?
What is the approach to get SQLite-ruby working in IronRuby?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
让 SQLite-ruby 在 IronRuby 中工作的方法是什么?
What is the approach to get SQLite-ruby working in IronRuby?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
最近发布了一个 sqlite3-ironruby gem,它在 gemcutter 上
来源是 在 gitub 上
There's an sqlite3-ironruby gem which was recently released, and it's on gemcutter
The source is here on gitub
您想如何在您的 IronRuby 项目中使用 sqlite?
How are wanting to use sqlite in your ironruby project?
您将无法按原样使用 activerecord 。
您可以包装 SQLite 的 ADO.NET 提供程序,也可以帮助 IronRuby-dbi 项目并提供正确处理 SQLite 的 dbi 适配器。从那时起,将其添加到导轨上就变得很容易,因为需要将连接替换为 dbi 连接。
虽然这是一项正在进行的工作,目前大部分工作都围绕着 sql server,但我也希望让 sqlite 在带有 Rails 的 IronRuby 上正常工作。
链接文本
you won't be able to use activerecord as is.
You can either wrap the ADO.NET provider for SQLite or you can perhaps help with the ironruby-dbi project and provide a dbi adapter that handles sqlite correctly. From then on adding it to rails is easy as it would require replacing the connection with the dbi connection.
It is a work in progress though and at this moment most efforts have been around sql server, but I too would like to get sqlite working properly on IronRuby with rails.
link text