首页上一页 1 下一页尾页 3 条记录 1/1页
<<c#从入门到精通>>第279页第15.5例题有个问题
发表在C#图书答疑
2009-05-23
是否精华
是
否
版块置顶:
是
否
我看了这个例题,看懂了.并按例题防造了一个:我的服务器名是:PC-200903301142(本地的),pwd是518518,里面有一个数据库是db_lx
我的c#代码如下:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;
namespace lj
{
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=localhost;datebase="+ textBox1.Text.Trim() + ";uid=sa;pwd=518518518";
SqlConnection conn=new SqlConnection(ConStr);
conn.Open();
if (conn.State == ConnectionState.Open)
{
label2.Text="数据库["+textBox1.Text.Trim()+"]已打开";
}
}
catch
{
MessageBox.Show("连接数据库失败");
}
}
}
}
}
不知为什么我打不开数据库,总是"连接数据库失败".我的和书上的例子没什和不一样,只是小改动下
数据源连接.这是什么道理,还有我用的是sql2005,难道sql2005要打开吗?
我的c#代码如下:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;
namespace lj
{
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=localhost;datebase="+ textBox1.Text.Trim() + ";uid=sa;pwd=518518518";
SqlConnection conn=new SqlConnection(ConStr);
conn.Open();
if (conn.State == ConnectionState.Open)
{
label2.Text="数据库["+textBox1.Text.Trim()+"]已打开";
}
}
catch
{
MessageBox.Show("连接数据库失败");
}
}
}
}
}
不知为什么我打不开数据库,总是"连接数据库失败".我的和书上的例子没什和不一样,只是小改动下
数据源连接.这是什么道理,还有我用的是sql2005,难道sql2005要打开吗?