connection error while trying to migrate table in visual studio 2022 - c#

i'm using visual studio 2022 and ASP.NET core 6 MVC. i'm trying to migrate a table named "Category" to Sql Server database using Entity Framework and i'm getting this error
Microsoft.Data.SqlClient.SqlException (0x80131904): A connection was successfully established with the server, but then an error occurred during the login process. (provider: SSL Provider, error: 0 - The certificate chain was provided by an authority that is not approved..)

Related

LocalDB: A newtwork-related or instance-specific error occured

I'm currently doing a project for a client. And for the database I'm using localDB and for deployment I'm using ClickOnce. My database name is Database.mdf and the connection string is
Data Source=(LocalDB)\MSSQLLocalDB;AttachDbFilename=|DataDirectory|\Database.mdf;Integrated Security=True
When I launch this application, it works fine on my computer. However when I install it on another computer I get 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: 50 - Local Database Runtime error occurred. The specified LocalDB instance does not exist.)
I have looked for answers in other forums as well however nothing seems to work. Can anyone tell me what the problem is?
Edit: I have included LocalDB and .Net Framework 4.6.1 as prerequisite.
Edit 2: The above problem was fixed but I have a new error now! It says that it cannot create the database because it is version 852 and this server supports version 706 and earlier!
Error Image
Check whether you able to connect with this localDB string in the SQL Management Studio. If you unable to connect with this. then this connection string is not valid
check your connection string here: Unable to connect to localDB in VS2012 – "A network-related or instance-specific error occurred while establishing a connection to SQL Server..."

Setting up EntityFramework SQL Server on Windows Server 2012 r2

This is the first time I've ever had to use a Windows server for publishing so forgive my ignorance.
I have a dedicated server with Windows Server 2012 r2 installed. I have setup the FTP publishing in order to publish the site via Visual Studio. The site works fine unless I try and use a feature that requires a database connection.
The project I am developing uses EntityFramework to handle the SQL database.
And I receive the following error:
Exception Details: System.ComponentModel.Win32Exception: The system
cannot find the file specified
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: 52 - Unable to locate a Local Database
Runtime installation. Verify that SQL Server Express is properly
installed and that the Local Database Runtime feature is enabled.)]
Connection strings
CentralDb
metadata=res://*/CentralDb.csdl|res://*/CentralDb.ssdl|res://*/CentralDb.msl;provider=System.Data.SqlClient;provider connection string="data source=(LocalDB)\MSSQLLocalDB;attachdbfilename=|DataDirectory|\centraldb.mdf;integrated
DefaultConnection
Data Source=(LocalDb)\MSSQLLocalDB;AttachDbFilename=|DataDirectory|\aspnet-BetCentral-20161230033657.mdf;Initial Catalog=aspnet-BetCentral-20161230033657;Integrated Security=True
LocalSqlServer
data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true
I've done a bit of Googling for this error and I have found multiple answers that are very varied and have not helped me correct my problem.

SQL connection error using visual studio code mssql extension on macOS

I am currently developing an ASP.NET app using Visual Studio Code on mac.
I am trying to use "mssql extension" to get connection with a SQL Server database.
I followed https://learn.microsoft.com/en-us/sql/linux/sql-server-linux-develop-use-vscode step by step. However, I always get an error message like below:
mssql: Failed to connect: System.Data.SqlClient.SqlException: 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: TCP Provider, error: 40 - Could not open a connection to SQL Server)
"error message screenshot"
Thanks for your help in advance.
If this is a SQL Server 2008 R2 instance, you need to upgrade to SP3. See https://github.com/Microsoft/vscode-mssql/issues/666 for details - basically .Net Core doesn't support older versions due to a vulnerability that is fixed in SP3, and the MSSQL extension uses the .Net Core stack for connectivity.

Entity Framework Core connection error to SQL Express

I want to run an example project (Contoso University) in VS 2015 Community with SQL Express 2016 database but the login is failed with my user.
I can connect from the VS Server Explorer and I copied the connection string into the appsettings.json but no msuch success.
Connection string:
"DefaultConnection": "Data Source=MACHINENAME\SQLEXPRESS;Initial Catalog=ContosoUniversity1;Integrated Security=True"
Error message:
Cannot open database "ContosoUniversity1" requested by the login. The
login failed. Login failed for user 'username'.
Hm? :)

SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified on LocalDB

I have written a c# wpf application that talks to a SQL Server 2012 LocalDB on my machine.
To make the app accessible on other peoples machine's I have:
Included the database file in a zip for the user to extract to the programs directory.
Written SQL scripts to attach the database to the local machine's LocalDB instance.
The application works perfectly fine on my machine, however after installing on someone else's computer (after the .NET and SQL Server 2012 LocalDB prerequisites have been installed), it keeps filling up the error logs with the following message:
Exception: 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).
Now there are a lot of other references to the same error message, but I cannot find any that relate to LocalDB or what to try with LocalDB.
Keeping in mind the application is designed for the common 'end-user', so I can't have them following numerous instructions to use SQL Server Management Studio or configuration manager.
The attach SQL script is as follows in case you need to know:
CREATE DATABASE BaseDB
ON (FILENAME = 'C:\MyApp\Base\MyDB.mdf'),
(FILENAME = 'C:\MyApp\Base\MyDB.ldf')
FOR ATTACH;
Can anyone suggest why this wouldn't be working?
To solve this problem:
Install this update to Microsoft Net Framework 4.0: KB2544514
Start: `SqlLocalDB [create|c] instance-name [-s]`
For example:`SqlLocalDB.exe create MSSQLLocalDB -s`

Categories