Hello friends, i use this code to work with a "SQLite" database and works good :
Dim cn As New SQLiteConnection("Data Source=C:\sqlite-3_5_1\tst.db")
Dim dr As SQLiteDataReader
Dim cmd As New SQLiteCommand()
cmd.CommandText = "Select * from CFG_USER"
cmd.Connection = cn
cn.Open()
dr = cmd.ExecuteReader()
While (dr.Read())
MsgBox(dr.GetValue(0))
End While
dr.Close()
cn.Close(
What changes i must to do, for use the "uSQLiteServer" wrapper ??? Please
help me !!
Thanks,
Paulito
**

