0

I've downloaded the file sqlite.dll precompiled for 64-bit Windows (.NET Framework 4.0) for my app written in C#.

(I follow this thread: SQLite3.dll for Windows 7 64 bit)

With my old 32-bit dll the function sqlite3_column_origin_name works correctly, but with latest version for 64-bit, this function give me an error:

[DllImport("sqlite3.dll", EntryPoint = "sqlite3_column_origin_name")]
static extern string sqlite3_column_origin_name(IntPtr stmHandle, int iCol);

I use DLL Export Viewer to read exported functions into this dll and this function happears.

Can anyone help me?

EDIT: Screenshot of "error" attached enter image description here

Community
  • 1
  • 1
CeccoCQ
  • 3,746
  • 12
  • 50
  • 81

1 Answers1

0

Finally, I've found solution. I've downloaded package from sqlite.org and I've used unmanaged code in combo with precompiled binaries.

CeccoCQ
  • 3,746
  • 12
  • 50
  • 81