c#程序执行过程中抛出sql异常

Alicemaqian 2011-04-07 04:41:50
程序源码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using System.Data.SqlClient;

namespace Login
{
class LinkDataBase
{
private string strSQL;
//与SQL Server的连接字符串设置
private string connectionString = @"Data Source=LocalHost;Integrated Security=true;Database=Senic";
//与数据库的连接
private SqlConnection myConnection;

private SqlCommandBuilder sqlCmdBld;
private DataSet ds = new DataSet();
private SqlDataAdapter da;

public LinkDataBase()
{
//
// TODO: 在此处添加构造函数逻辑
//
}

///////////////////////////////// 操作脱机数据库(创建了该类的实例时直接用) /////////////////////////////////////////////////////

//根据输入的SQL语句检索数据库数据
public DataSet SelectDataBase(string tempStrSQL, string tempTableName)
{
this.strSQL = tempStrSQL;
this.myConnection = new SqlConnection(connectionString);
this.da = new SqlDataAdapter(this.strSQL, this.myConnection);
this.ds.Clear();
// this.ds.Reset();

this.da.Fill(ds,tempTableName);
this.myConnection.Close();
da.Dispose();
return ds;//返回填充了数据的DataSet,其中数据表以tempTableName给出的字符串命名
}

//数据库数据更新(传DataSet和DataTable的对象)
public DataSet UpdateDataBase(DataSet changedDataSet, string tableName)
{
this.myConnection = new SqlConnection(connectionString);
this.da = new SqlDataAdapter(this.strSQL, this.myConnection);
this.sqlCmdBld = new SqlCommandBuilder(da);
this.da.Update(changedDataSet, tableName);
return changedDataSet;//返回更新了的数据库表
}

///////////////////////////////// 直接操作数据库(未创建该类的实例时直接用) /////////////////////////////////////////////////////

//检索数据库数据(传字符串,直接操作数据库)
public DataTable SelectDataBase(string tempStrSQL)
{
this.myConnection = new SqlConnection(connectionString);
DataSet tempDataSet = new DataSet();
this.da = new SqlDataAdapter(tempStrSQL, this.myConnection);
this.da.Fill(tempDataSet); return tempDataSet.Tables[0];
}

//数据库数据更新(传字符串,直接操作数据库)
public int UpdateDataBase(string tempStrSQL)
{
this.myConnection = new SqlConnection(connectionString);
//使用Command之前一定要先打开连接,后关闭连接,而DataAdapter则会自动打开关闭连接
myConnection.Open();
SqlCommand tempSqlCommand = new SqlCommand(tempStrSQL, this.myConnection);
int intNumber = tempSqlCommand.ExecuteNonQuery();//返回数据库中影响的行数
myConnection.Close();
return intNumber;
}
public void InsertDataBase(string tempStrSQL)
{
this.myConnection = new SqlConnection(connectionString);
myConnection.Open();
SqlCommand tempSqlCommand = new SqlCommand(tempStrSQL, this.myConnection);
int number = tempSqlCommand.ExecuteNonQuery();
myConnection.Close();
}
}
}


using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace Login
{
public partial class Form1 : Form
{
private LinkDataBase link = new LinkDataBase();
private DataSet ds = new DataSet();
private string tableName = "login";

private string name = "";
private string password = "";

public Form1()
{
InitializeComponent();
}

private void Form1_Load(object sender, EventArgs e)
{
name = textBox1.Text;
password = textBox2.Text;
}

private void button1_Click(object sender, EventArgs e)
{

name = textBox1.Text;
password = textBox2.Text;
string strSQL = "select * from login where name ='" +name+"'";
this.ds = link.SelectDataBase(strSQL,tableName);
if (ds.Tables[tableName].Rows.Count > 0)
{
MessageBox.Show("该用户已存在!");
}

else
{
string strSQL1 = "insert into login values('"+name+"','"+password+"')";
link.InsertDataBase(strSQL1);
MessageBox.Show("添加成功!");

}
}


}
}

程序执行过程中抛出异常,指在这句上:this.da.Fill(tempDataSet);
错误提示: 在与 SQL Server 建立连接时出现与网络相关的或特定于实例的错误。未找到或无法访问服务器。请验证实例名称是否正确并且 SQL Server 已配置为允许远程连接。 (provider: 命名管道提供程序, error: 40 - 无法打开到 SQL Server 的连接)

注:c#程序连sql时,sql是以windows身份验证方式登录的
连接语句为:private string connectionString = @"Data Source=LocalHost;Integrated Security=true;Database=Senic";
这样写对吗
...全文
216 8 打赏 收藏 转发到动态 举报
写回复
用AI写文章
8 条回复
切换为时间正序
请发表友善的回复…
发表回复
cjh200102 2011-04-08
  • 打赏
  • 举报
回复
你先去把SQL Server 配置打开看看
whrspsoft3723 2011-04-07
  • 打赏
  • 举报
回复
要确定原因比较简单,你先把连接固定下来(写成一个固定的字符串),然后,向前走。
this.myConnection = new SqlConnection(connectionString);
DataSet tempDataSet = new DataSet();

myConnection.connect();
this.da = new SqlDataAdapter(tempStrSQL, this.myConnection);
this.da.Fill(tempDataSet); return tempDataSet.Tables[0];

Alicemaqian 2011-04-07
  • 打赏
  • 举报
回复
貌似还是我的连接那儿错了,哪位大侠赶快帮帮忙,急呀~谢谢各位了~
zhlbgo 2011-04-07
  • 打赏
  • 举报
回复
哦,不好意思,没注意到adapter。
建议你做如下步骤仔细检查一下:
1. 确保SQL Server 已配置为允许远程连接。
2. 确保连接字符串正确。
wyfde123 2011-04-07
  • 打赏
  • 举报
回复
连接字符串有问题
你打开数据库客户端看看能不能连接上
Alicemaqian 2011-04-07
  • 打赏
  • 举报
回复
SqlDataAdapter不是自动打开连接么,麻烦您说明白一点儿~谢谢了
zhlbgo 2011-04-07
  • 打赏
  • 举报
回复
你的错误在于你使用的connection没有open

111,125

社区成员

发帖
与我相关
我的任务
社区描述
.NET技术 C#
社区管理员
  • C#
  • Creator Browser
  • by_封爱
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告

让您成为最强悍的C#开发者

试试用AI创作助手写篇文章吧