Anybody know why mono SQLite uses SqliteConnection but Windows uses SQLiteConnection?

白昼怎懂夜的黑 提交于 2019-12-13 07:15:09

问题


I am adapting a large open-source Windows program to Linux, using MonoDevelop. I find that the SQLite method names in Windows look like this:

SQLiteConnection

but in Mono.Data.Sqlite they look like this:

SqliteConnection

with different case, so I got lots of reference errors.

With help from others at stackexchange here I was able to get the projects to compile.

Do any of you know why the two different versions of SQLite have different case in the method names?

来源:https://stackoverflow.com/questions/40649414/anybody-know-why-mono-sqlite-uses-sqliteconnection-but-windows-uses-sqliteconnec

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!