我对 Mono 中的 sqlite3.dll 有点困惑。我只是想知道 Mono for Android 和 MonoTouch 是否已经默认提供了本机 C sqlite3 的非托管二进制文件?
所以我可以在我的代码中以零依赖性做到这一点吗?
[DllImport("sqlite3", EntryPoint = "sqlite3_open", CallingConvention=CallingConvention.Cdecl)] public static extern Result Open ([MarshalAs(UnmanagedType.LPStr)] string filename, out IntPtr db);
或者我需要添加一些东西才能使用上面的代码?