简体   繁体   English

如何使用WebMatrix连接到SQL Server数据库?

[英]How do I connect to a SQL Server database using WebMatrix?

I added a connection and it shows up in "Other Connections" but I can't seem to reference it. 我添加了一个连接,它显示在“其他连接”中,但我似乎无法引用它。

var db = Database.Open("MyNewConnection");

throws an exception: Connection string 'MyNewConnection' was not found. 抛出异常: Connection string 'MyNewConnection' was not found.

Have you checked to make sure your connection string is correct in your web.config file? 您是否检查过以确保您的web.config文件中的连接字符串是否正确?

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <connectionStrings>
   <add 
     name="MyNewConnection" 
     connectionString= "server=myServer;database=myDatabase;uid=username;pwd=password"
     providerName="System.Data.SqlClient" /> 

  </connectionStrings>
</configuration>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何使用WebMatrix中的Razor连接到SQL Server数据库并检索数据? - How to connect to SQL Server database and retrieve data using Razor in WebMatrix? 如何使用 JDBC 连接到 SQL Server 2008 数据库? - How do I connect to a SQL Server 2008 database using JDBC? 使用WebMatrix将数据库从SQL Server CE迁移到Express-现在我找不到物理数据库 - Migrated Database from SQL Server CE to Express using WebMatrix - now I cannot find the physical database 如何复制SQL Server数据库并连接到它? - How do I make a copy of an SQL Server database and connect to it? 如何连接到R中的SQL Server数据库 - How do I connect to an SQL server database in R 如何从CodeIgniter 3连接到SQL Server数据库? - How do I connect to a SQL Server database from CodeIgniter 3? 如何从 Power BI 连接到 SQL 服务器数据库? - How do I connect to a SQL Server database from Power BI? 如何使用 docker 桌面将 kubernetes 集群连接到外部 SQL Server 数据库? - How do I connect a kubernetes cluster to an external SQL Server database using docker desktop? 我如何连接到我通常使用 .net6 应用程序通过 GlobalProtect 连接到的 Microsoft SQL Server 数据库 - How do i connect to a Microsoft SQL Server database to which i normally connect via GlobalProtect using .net6 application 脚本连接到WebMatrix内的MS Sql数据库 - Script connect to MS Sql database inside WebMatrix
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM