Re: [Mono-dev] Which SQLite?

2014-07-17 Thread Edward Ned Harvey (mono)
From: Alex J Lennon [mailto:ajlen...@dynamicdevices.co.uk] Sent: Wednesday, July 16, 2014 5:15 AM To: Edward Ned Harvey (mono); mono-devel-list@lists.ximian.com fwiw - I am currently using System.Data.SQLite, deploying onto both .NET/Windows and Mono/Yocto Embedded Linux However I have

Re: [Mono-dev] Which SQLite?

2014-07-17 Thread Timotheus Pokorra
Hello Edward, Mono.Data.Sqlite is reliably available on mac/linux. And I had the brilliant idea that I would install mono on windows, and then grab the Mono.Data.Sqlite.dll from the mono installation, and distribute it. However, there's this:

Re: [Mono-dev] Which SQLite?

2014-07-17 Thread Timotheus Pokorra
For OpenPetra, we are using Mono.Data.Sqlite in our code, no matter if it runs on Linux or on Windows. hmm, I forgot the link that I wanted to include: https://github.com/openpetra/openpetra/tree/master/csharp/ThirdParty/SQLite That directory contains the dlls that we are using on Windows, and

Re: [Mono-dev] Which SQLite?

2014-07-17 Thread Alex J Lennon
On 17/07/2014 13:33, Edward Ned Harvey (mono) wrote: From: Alex J Lennon [mailto:ajlen...@dynamicdevices.co.uk] Sent: Wednesday, July 16, 2014 5:15 AM To: Edward Ned Harvey (mono); mono-devel-list@lists.ximian.com fwiw - I am currently using System.Data.SQLite, deploying onto both

Re: [Mono-dev] Which SQLite?

2014-07-17 Thread Edward Ned Harvey (mono)
From: Timotheus Pokorra [mailto:timotheus.poko...@solidcharity.com] Sent: Thursday, July 17, 2014 8:56 AM On Windows, we copy the Mono.Data.Sqlite.dll and the sqlite3.dll to our application directory. We use the Mono.Data.Sqlite.dll that came with Mono for windows version 2.10.6

Re: [Mono-dev] Which SQLite?

2014-07-17 Thread Edward Ned Harvey (mono)
From: Alex J Lennon [mailto:ajlen...@dynamicdevices.co.uk] Sent: Thursday, July 17, 2014 9:12 AM I guess I'd start by asking - if we have System.Data.Sqlite, and it works on Mono, then why do we need Mono.Data.Sqlite? I don't care if I use System.Data.Sqlite or Mono.Data.Sqlite. So far I

Re: [Mono-dev] Which SQLite?

2014-07-17 Thread Edward Ned Harvey (mono)
From: mono-devel-list-boun...@lists.ximian.com [mailto:mono-devel-list- boun...@lists.ximian.com] On Behalf Of Edward Ned Harvey (mono) But it now sounds like there are some additional possibilities to try... This is confirmed working: Install mono 3.4.0 on the mac. Copy one of these files

Re: [Mono-dev] Which SQLite?

2014-07-17 Thread Alex J Lennon
On 17/07/2014 14:48, Edward Ned Harvey (mono) wrote: From: Alex J Lennon [mailto:ajlen...@dynamicdevices.co.uk] Sent: Thursday, July 17, 2014 9:12 AM I guess I'd start by asking - if we have System.Data.Sqlite, and it works on Mono, then why do we need Mono.Data.Sqlite? I don't care if I

Re: [Mono-dev] Which SQLite?

2014-07-16 Thread Alex J Lennon
On 15/07/2014 19:55, Edward Ned Harvey (mono) wrote: For cross-platform compatibility with mono on mac/linux, and .NET on windows... What is recommended SQLite? When I add System.Data.SQLite.Core via NuGet in windows... it seems to be incompatible with mono... It looks like there is

[Mono-dev] Which SQLite?

2014-07-15 Thread Edward Ned Harvey (mono)
For cross-platform compatibility with mono on mac/linux, and .NET on windows... What is recommended SQLite? When I add System.Data.SQLite.Core via NuGet in windows... it seems to be incompatible with mono... It looks like there is SQLite built-in to mono via Mono.Data.SQLite, and I could

Re: [Mono-dev] Which SQLite?

2014-07-15 Thread Brandon Perry
In the past, I have just shipped Mono.Data.SQLite with my apps on windows. On Tue, Jul 15, 2014 at 1:55 PM, Edward Ned Harvey (mono) edward.harvey.m...@clevertrove.com wrote: For cross-platform compatibility with mono on mac/linux, and .NET on windows... What is recommended SQLite?