Krumelur
Krumelur

Reputation: 33058

Is there a managed code replacement for Sqlite3 in MonoTouch?

I don't trust the native Sqlite3 in MonoTouch anymore. I keep getting random crashes and although I cannot prove it, I claim that it is not my fault. To verify this I would like to use a managed replacement of Sqlite3. Is there a project that is syntax compatible with the native version? And more important: does somebody have experience with it?

Upvotes: 1

Views: 197

Answers (1)

poupou
poupou

Reputation: 43553

Look at the Xamarin cross-platform MWC sample.

While it use the native libsqlite on iOS and Android versions it does use a fully managed port of SQLite for the Windows phone version (where SQLite is not available and where it's not possible to add native code).

However that won't tell you what's wrong with your application. If you're using other native libraries in your project I suggest you to remove them (one by one) and try to duplicate the sqlite crash again.

Upvotes: 1

Related Questions