SmileeTiger
Programmer
Hi,
I want to do the following:
open the ADO recordset tblPart on the SQL server called TESTFUSION1. Using the user genericuser with no password.
Will the following solution work?
Dim obConnection As New ADODB.Connection
obConnection.Provider = "SQLOLEDB.1"
obConnection.Properties("Data Source"
= "TESTSERVER1"
obConnection.Properties("User ID"
= "genericuser"
obConnection.Open
How will I then open the recordset?
Smilee
I want to do the following:
open the ADO recordset tblPart on the SQL server called TESTFUSION1. Using the user genericuser with no password.
Will the following solution work?
Dim obConnection As New ADODB.Connection
obConnection.Provider = "SQLOLEDB.1"
obConnection.Properties("Data Source"
obConnection.Properties("User ID"
obConnection.Open
How will I then open the recordset?
Smilee