SQLite sqlite3_column_origin_name function

丶灬走出姿态 提交于 2019-12-11 17:53:02

问题


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


回答1:


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



来源:https://stackoverflow.com/questions/6759198/sqlite-sqlite3-column-origin-name-function

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!