首页上一页 1 下一页尾页 2 条记录 1/1页
《C#从入门到精通》如何才能成功连接数据库
发表在C#图书答疑
2011-09-23
是否精华
是
否
版块置顶:
是
否
我按照书中P272页的代码做了好几篇,运行时都出现“连接数据库失败”,请高手指点一下,代码究竟出现在那,非常急,请高手分析详细一点,我是自学者。非常感谢,期待中……
using System;
using System.Data;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;
namespace Test01
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
if (textBox1.Text == "")
{
MessageBox.Show("请输入要连接的数据库名称");
}
else
{
try
{
string ConStr = "server=.;database=" + textBox1 .Text .Trim () + ";uid=sa;pwd=";
SqlConnection conn = new SqlConnection(ConStr);
conn.Open();
if (conn.State == ConnectionState.Open)
{
label2.Text = "数据库【" + textBox1.Text.Trim() + "】已经连接并打开";
}
}
catch
{
MessageBox.Show("连接数据库失败");
}
}
}
private void Form1_Load(object sender, EventArgs e)
{
}
}
}
using System;
using System.Data;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;
namespace Test01
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
if (textBox1.Text == "")
{
MessageBox.Show("请输入要连接的数据库名称");
}
else
{
try
{
string ConStr = "server=.;database=" + textBox1 .Text .Trim () + ";uid=sa;pwd=";
SqlConnection conn = new SqlConnection(ConStr);
conn.Open();
if (conn.State == ConnectionState.Open)
{
label2.Text = "数据库【" + textBox1.Text.Trim() + "】已经连接并打开";
}
}
catch
{
MessageBox.Show("连接数据库失败");
}
}
}
private void Form1_Load(object sender, EventArgs e)
{
}
}
}