Re: [sqlite] Visual Studio 2015 Express C# LoadExtension() not working?

2017-03-17 Thread Phil Pollock
: [sqlite] Visual Studio 2015 Express C# LoadExtension() not working? I can think of one possibility offhand: The application is running as 32-bit and the extension DLL is 64-bit (or vice-versa). Sent from my iPhone https://urn.to/r/mistachkin > On Mar 17, 2017, at 5:02 PM, Phil Pollock wrote: &g

Re: [sqlite] Visual Studio 2015 Express C# LoadExtension() not working?

2017-03-17 Thread Phil Pollock
I forgot to mention I tried all combinations of 32-bit, 64-bit together with same results. From: sqlite-users on behalf of Joe Mistachkin Sent: Friday, March 17, 2017 8:09 PM To: SQLite mailing list Subject: Re: [sqlite] Visual Studio 2015 Express C

Re: [sqlite] Visual Studio 2015 Express C# LoadExtension() not working?

2017-03-17 Thread Joe Mistachkin
I can think of one possibility offhand: The application is running as 32-bit and the extension DLL is 64-bit (or vice-versa). Sent from my iPhone https://urn.to/r/mistachkin > On Mar 17, 2017, at 5:02 PM, Phil Pollock wrote: > > I can't get the LoadExtension() function to work under Visual S

[sqlite] Visual Studio 2015 Express C# LoadExtension() not working?

2017-03-17 Thread Phil Pollock
I can't get the LoadExtension() function to work under Visual Studio 2015 Express C#. I have tried to load several extensions that do work under the SQLite console but they will not load under C#. So I created the minimal example of an example extension given on sqlite.org using the half.c sour