是否有可能以某种方式获取到我的 SQL 服务器的连接字符串?它在本地运行,与需要使用 SQL 服务器的应用程序在同一台计算机上运行。
到目前为止该应用程序已经在 Windows 上运行,使用连接字符串:
Data Source=JOHN-PC\\SQLEXPRESS01;Initial Catalog=knihovna;Integrated Security=True;Connect Timeout=30;Encrypt=False;TrustServerCertificate=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False;
答案1
从mysql 文档:
"ConnectionStrings": { "DefaultConnection": "server=127.0.0.1;user id=root;password=pass;port=3306;database=blog;" }
显然,您必须替换密码、用户名和数据库以满足您的需要。