S
Shane
I want to be able to open a blank Access db, then connect to a SQL Server db
using:
Set cnDB = CreateObject("ADODB.Connection")
cnDB.ConnectionString = "Provider=SQLOLEDB.1; Integrated Security=SSPI;" _
& "Persist Security Info=False; Initial Catalog=ProjectServer;Data
Source=jnicapproject"
cnDB.Open
Then cycle through all the tables in the SQL Server database looking for a
specific field name. Can this be done?
using:
Set cnDB = CreateObject("ADODB.Connection")
cnDB.ConnectionString = "Provider=SQLOLEDB.1; Integrated Security=SSPI;" _
& "Persist Security Info=False; Initial Catalog=ProjectServer;Data
Source=jnicapproject"
cnDB.Open
Then cycle through all the tables in the SQL Server database looking for a
specific field name. Can this be done?