Re: [sqlite] How use 'uSQLiteServer' wrapper with Visual Basic .NET ???

2007-11-06 Thread bartsmissaert
What wrapper are you using now that works good and what is the uSQLiteServer wrapper? RBS 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

Re: [sqlite] How use 'uSQLiteServer' wrapper with Visual Basic .NET ???

2007-11-06 Thread bartsmissaert
Sorry, I don't use .NET and couldn't tell you. I am sure somebody will. RBS Hello RBS, thanks for your answer. I'am a newbie in SQLite. I need a SQlite server and i read that the uSQLite can do this, and i'am try to work with this. But i need something more in VB .NET ? Or you know other

Re: [sqlite] How use 'uSQLiteServer' wrapper with Visual Basic .NET ???

2007-11-06 Thread paulito santana
Hello RBS, thanks for your answer. I'am a newbie in SQLite. I need a SQlite server and i read that the uSQLite can do this, and i'am try to work with this. But i need something more in VB .NET ? Or you know other server application ?? Please help me ! Regards, Paulito 2007/11/6, [EMAIL

RE: [sqlite] How use uSQLiteServer wrapper with Visual Basic .NET ???

2007-11-06 Thread Samuel R. Neff
uSQLiteServer provides it's own network protocol implementation and it's own API so using is nothing like using SQLite itself or any other SQLite wrapper. If you feel you need to use uSQLiteServer then you'll need to either use the C code provided for it's client API, convert it to VB.NET, or

Re: [sqlite] How use uSQLiteServer wrapper with Visual Basic .NET ???

2007-11-06 Thread John Stanton
This is good advice from Sam, but there is another question. Why do you need a server and how do you intend to interface to it? Why does the server need to support Sqlite? Samuel R. Neff wrote: uSQLiteServer provides it's own network protocol implementation and it's own API so using is