帮忙看看我在连接SQL数据库的问题(附源码)
我在连接数据库的时候老是显示连接失败,谁能帮我看看啊,谢谢了,密码肯定没问题,以下省略
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.SqlClient;
namespace Test
{
/// <summary>
/// test1 的摘要说明。
/// </summary>
public class test1 : System.Web.UI.Page
{
private void Page_Load(object sender, System.EventArgs e)
{
// 在此处放置用户代码以初始化页面
Response.Write( "连接数据库的实例 <br> ");
string ConnStr= "user id=sa;password=******; ";
ConnStr+= "initial catalog=oadata;Server=localhost; ";
ConnStr+= "Connect Timeout=30 ";
SqlConnection Conn=new SqlConnection(ConnStr);
try
{
Conn.Open();//打开数据库链接
Response.Write( "链接成功! ");
}
catch
{
Response.Write( "链接失败! ");
}
}
#region Web 窗体设计器生成的代码
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
}
}
[解决办法]
ConnStr+= "initial catalog=oadata;Server=localhost; ";
TO : ConnStr+= "initial catalog=oadata;Server=.; ";