无法打开登录 'Com99120DB' 中请求的数据库。登录失败。用户 'sa' 登录失败。
出错信息:“/CONN”应用程序中的服务器错误。
--------------------------------------------------------------------------------
无法打开登录 'Com99120DB' 中请求的数据库。登录失败。用户 'sa' 登录失败。
说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。
异常详细信息: System.Data.SqlClient.SqlException: 无法打开登录 'Com99120DB' 中请求的数据库。登录失败。用户 'sa' 登录失败。
源错误:
行 23: String cmdText="Select count(*) AS CustomerCount from User";
行 24: SqlCommand myCommand=new SqlCommand(cmdText,myConnection);
行 25: myConnection.Open();
行 26: int result=(int)myCommand.ExecuteScalar();
行 27: Response.Write("User表记录的条数为:"+result.ToString()+"条。");
源文件: d:\web\conn\webform1.aspx.cs 行: 25
堆栈跟踪:
[SqlException: 无法打开登录 'Com99120DB' 中请求的数据库。登录失败。
用户 'sa' 登录失败。]
System.Data.SqlClient.ConnectionPool.GetConnection(Boolean& isInTransaction)
System.Data.SqlClient.SqlConnectionPoolManager.GetPooledConnection(SqlConnectionString options, Boolean& isInTransaction)
System.Data.SqlClient.SqlConnection.Open()
CONN.WebForm1.Page_Load(Object sender, EventArgs e) in d:\web\conn\webform1.aspx.cs:25
System.Web.UI.Control.OnLoad(EventArgs e)
System.Web.UI.Control.LoadRecursive()
System.Web.UI.Page.ProcessRequestMain()
--------------------------------------------------------------------------------
版本信息: Microsoft .NET Framework 版本:1.1.4322.2407; 版本:1.1.4322.2407
代码:
using System;
using System.Collections;
using
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
namespace CONN
{
/// <summary>
/// WebForm1 的摘要说明。
/// </summary>
public class WebForm1 : System.Web.UI.Page
{ private static String ConnectionString="Data Source=RH-PC;uid=sa;pwd=123;Database=Com99120DB;";
private void Page_Load(object sender, System.EventArgs e)
{ SqlConnection myConnection=new SqlConnection(ConnectionString);
String cmdText="Select count(*) AS CustomerCount from User";
SqlCommand myCommand=new SqlCommand(cmdText,myConnection);
myConnection.Open();
int result=(int)myCommand.ExecuteScalar();
Response.Write("User表记录的条数为:"+result.ToString()+"条。");
// 在此处放置用户代码以初始化页面
}
#region Web 窗体设计器生成的代码
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 该调用是 Web 窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
}
}