August 2, 2006 at 7:48 pm
Hi there, can anyone give me some advice on how to connect to SQLServer 2000 without using ODBC? VB or VB.net development.
August 4, 2006 at 2:19 am
Try:
Dim connString As String = "user id=username;password=pass; initial catalog=DBName; data source=ServerName"
Dim myConn As New SqlConnection(connString)
Abs
August 4, 2006 at 10:59 am
Her's a handy link no programmer should be without:
http://www.connectionstrings.com/
RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."
August 13, 2006 at 5:30 pm
thanks guys, i'll give them a go. thanks for that useful link too
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply