I am using visual studio 2010 to write some VB scripts that reads some txt files and inputs the results into a Database. the database I am connecting too is a Microsoft SQL server 2008 service pack 2. I am trying to use a connection string that specifies Data Source, Database, user ID and password. which then gets called by
Using SQLConnection As New SqlConnection(connectionString) Try SQLConnection.Open() However I keep getting that the database cannot be found, or that the connection cannot be made. Thanks in advance for any advice or links to any questions I might be duplicating.
Cheers.