sqlite、mono、C# 跨平台
我在我的 C# 项目中使用 sqlite。 MoMA 抱怨 DLL,我不确定在 mac/linux 端该怎么做。 移植外部 DLL 时通常需要做什么?
I am using sqlite in my C# project. MoMA complains about the DLLs and i am unsure what to do on the mac/linux side. What are things i generally need to do when porting external DLLs?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可能想查看 Googlecode 上的 SQLite 的 C# 重新实现。 这开始于C++ SQLite 的逐行移植 但经过大量改进后,现在在许多类型的操作中都优于原始版本。
You might want to look at the C# reimplementation of SQLite on googlecode. This started life as a line-by-line port of the C++ SQLite but after lots of improvements now outperforms the original for many types of operation.
您可以使用 Mono 附带的 SQLite 程序集 - 它源自您现在可能正在使用的程序集。
有关更多详细信息,请参阅 http://mono-project.com/SQLite
You could use the SQLite assembly that's shipped with Mono - it's derived from the one you are probably using now.
See http://mono-project.com/SQLite for more details
PHXSoftware 的 System.Data.Sqlite 在 Mono 上运行。
PHXSoftware's System.Data.Sqlite runs on Mono.