I have a working sqlite installation- 

[EMAIL PROTECTED]:~> sqlite SqliteTest.db
SQLite version 2.8.15
Enter ".help" for instructions
sqlite> select * from employee;
adam|williams
michelle|williams
sqlite> .exit
[EMAIL PROTECTED]:~> rpm -q sqllite
package sqllite is not installed
[EMAIL PROTECTED]:~> rpm -q mono-data-sqlite
mono-data-sqlite-1.0.5-1.ximian.10.4

and I can compile the sample sqlite code from mono doc -

[EMAIL PROTECTED]:~> mcs TestExample.cs -r System.Data.dll -r
Mono.Data.SqliteClient.dll
Compilation succeeded

but attempting to run the app dies with -

[EMAIL PROTECTED]:~> mono TestExample.exe
 
Unhandled Exception: System.DllNotFoundException: sqlite
in <0x00053> (wrapper managed-to-native)
Mono.Data.SqliteClient.SqliteConnection:sqlite_open (string,int,string&)
in <0x0005d> Mono.Data.SqliteClient.SqliteConnection:Open ()
in <0x00066> Whitemice.Sqlite.Test:Main (string[])

What DLL am I missing?

_______________________________________________
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list

Reply via email to