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

2007-11-06 Thread John Stanton
n our team building products. Position is in the Washington D.C. metro area. If interested contact [EMAIL PROTECTED] -Original Message- From: paulito santana [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 06, 2007 3:36 AM To: sqlite-users@sqlite.org Subject: [sqlite] How use &quo

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

2007-11-06 Thread Samuel R. Neff
t: Tuesday, November 06, 2007 3:36 AM To: sqlite-users@sqlite.org Subject: [sqlite] How use "uSQLiteServer" wrapper with Visual Basic .NET ??? Hello friends, i use this code to work with a "SQLite" database and works good : ... What changes i must to do, for use the "uSQ

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

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 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

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

2007-11-06 Thread paulito santana
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 =