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

2017-03-17 Thread Phil Pollock
One of my cl library paths was mixing 32-bit, 64-bit versions during the build. Thanks for making me double check. From: sqlite-users on behalf of Phil Pollock Sent: Friday, March 17, 2017 9:28 PM To: SQLite mailing list Subject: Re: [sqlite] Visual Studio

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

2017-03-17 Thread Phil Pollock
# 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: > > I can't get the LoadExtension

[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