public void EnableLoadExtension(int onoff) { SQLite3.Result result = SQLite3.EnableLoadExtension(Handle, onoff); if (result != 0) { string errmsg = SQLite3.GetErrmsg(Handle); throw SQLiteException.New(result, errmsg); } }