SQLite Forum

SQLite ODBC
Login
Not so! 

(Besides, most people who ask for help are capable of doing searches for code snippets WITHOUT terse reminders)

Most of the links return references to using SQLite with Dot Net classes.

I am interested in using progressing to the next step after successfully loading SQLite3.dll using this code

[DllImport("kernel32.dll")]

public static extern IntPtr LoadLibrary(string dll);

IntPtr hExe = LoadLibrary(@"D:\\SQLite32\\sqlite3.dll");

            if (hExe == IntPtr.Zero)

            {

                throw new System.ComponentModel.Win32Exception("Cannot load 
library");

            }