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

165 Views Asked by At

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?

0

There are 0 best solutions below