Gadea

Gadea


  • Name: [not set]
  • Favorite Languages: [not set]
  • Website: [not set]
  • Location: [not set]
  • About Me: [not set]

Recent Comments

  • C# Tutorial - Writing a .NET Wrapper for SQLite
    04/22/2009 - 16:37

    ok! that is! thanks! ;)

    Gadea

  • C# Tutorial - Writing a .NET Wrapper for SQLite
    04/21/2009 - 03:56

    Hello, the tutorial is great! and it has helped me. thanks.

    i'm spanish, so you excuse me, my faulty English.

    i'm developing in C# an apy for pocket PC. and i need to use this.

    but i have a problem, i have writted your example, but one exception is throwing:

     public void OpenDatabase(string path)
        {
          if (sqlite3_open(path, out _db) != SQLITE_OK)
            throw new SQLiteException("Could not open database file: " + path);

          _open = true;
        }

    in this line: if (sqlite3_open(path, out _db) != SQLITE_OK) --->Can't find PInvoke DLL 'sqlite3.dll'. MissingMethodException

    and i have any idea, what is the solution.

    i hope you heard me explain.

    thanks by your time,

    Gadea