R
Roland Bengtsson
I have an application that I want to use an embedded database in. I
started with MySQL and ODBC (client server model) but want to change
that. I found SQLite http://www.sqlite.org and found it promising, a
single dll-file contains all the needed functions.
I'm new to C# but I found that I have to write C# functions marked
with unsafe keyword do call an external dll-file. I tried to add an
reference to sqlite.dll in Visual .NET 2003 but I got an error. Then I
found a wrapper on
http://www.phpguru.org/static/SQLite.NET.html but I failed to compile
that to.
the line
using Hlib;
got an error. The compiler don't know what Hlib is.
I add the reference to SQLiteClient.dll before compiling the project
sqlLiteTest.
So what are my options?
started with MySQL and ODBC (client server model) but want to change
that. I found SQLite http://www.sqlite.org and found it promising, a
single dll-file contains all the needed functions.
I'm new to C# but I found that I have to write C# functions marked
with unsafe keyword do call an external dll-file. I tried to add an
reference to sqlite.dll in Visual .NET 2003 but I got an error. Then I
found a wrapper on
http://www.phpguru.org/static/SQLite.NET.html but I failed to compile
that to.
the line
using Hlib;
got an error. The compiler don't know what Hlib is.
I add the reference to SQLiteClient.dll before compiling the project
sqlLiteTest.
So what are my options?