vote up 0 vote down star
1

I'm getting an error connecting to a VistaDB using a connection string in the web.config file.

It works fine using a SQLDataSource AFTER I specified the ProviderName. On another page I'm only connecting in code and

Here is the code for the connection string:

Public Function CreateConnection() As SqlConnection _connectionString = ConfigurationManager.ConnectionStrings("ConnectionString").ToString() Return New SqlConnection(_connectionString) End Function

Here is the error:

A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)

How can I resolve this error?

flag

76% accept rate
I am getting the same error. Haven't figured it out yet. – Hemanshu Bhojak Mar 25 at 6:26

1 Answer

vote up 2 vote down check

You can't use a SqlConnection with a VistaDB connection string. That is the error you are getting from SQL Server - it can't find that server.

Use a VistaDBConnection instead.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.