C#:SqlConnection 当前上下文中不存在名称SqlHelper
usingSystem;usingSystem.Data;usingSystem.Data.SqlClient;usingSystem.Collections.Gener...
using System;
using System.Data;
using System.Data.SqlClient;
using System.Collections.Generic;
using System.Linq;
using System.Web.Security;
using System.Configuration;
/// <summary>
///Msg 的摘要说明
/// </summary>
public class Msg
{
private const string SQL_PARM_RECEIVE = "@receive";
private const string SQL_PARM_SEND = "@SEND";
private const string SQL_PARM_TITLE = "@title";
private const string SQL_PARM_CONTENT = "@content";
private const string SQL_INSERT_MESSAGE = "INSERT INTO message VALUES(@receive,@send,@title,@content,'0')";
public Msg()
{
//
//TODO: 在此处添加构造函数逻辑
//
}
public bool SendMSG(string receive, string send, string title, string content)
{
if (Membership.FindUsersByName(receive) == null)
return false;
else
{
SqlParameter[] parms = new SqlParameter[] {
new SqlParameter("@receive",SqlDbType.NVarChar,20),
new SqlParameter("@send",SqlDbType.NVarChar,20),
new SqlParameter("@title",SqlDbType.NVarChar,20),
new SqlParameter("@content",SqlDbType.NVarChar,100)};
SqlCommand cmd = new SqlCommand();
parms[0].Value = receive;
parms[1].Value = send;
parms[2].Value = title;
parms[3].Value = content;
foreach (SqlParameter parm in parms)
cmd.Parameters.Add(parm);
using (SqlConnection conn = new SqlConnection(SqlHelper.ConnectionStringLocalTransaction))
{
conn.Open();
cmd.Connection = conn;
cmd.CommandType = CommandType.Text;
cmd.CommandText = SQL_INSERT_MESSAGE;
int val = cmd.ExecuteNonQuery();
cmd.Parameters.Clear(); //清空sqlCommand命令中的参数;
if (val > 0)
return true;
else
return false;
}
}
}
}
请问需要怎么改呀,需要声明么? 展开
using System.Data;
using System.Data.SqlClient;
using System.Collections.Generic;
using System.Linq;
using System.Web.Security;
using System.Configuration;
/// <summary>
///Msg 的摘要说明
/// </summary>
public class Msg
{
private const string SQL_PARM_RECEIVE = "@receive";
private const string SQL_PARM_SEND = "@SEND";
private const string SQL_PARM_TITLE = "@title";
private const string SQL_PARM_CONTENT = "@content";
private const string SQL_INSERT_MESSAGE = "INSERT INTO message VALUES(@receive,@send,@title,@content,'0')";
public Msg()
{
//
//TODO: 在此处添加构造函数逻辑
//
}
public bool SendMSG(string receive, string send, string title, string content)
{
if (Membership.FindUsersByName(receive) == null)
return false;
else
{
SqlParameter[] parms = new SqlParameter[] {
new SqlParameter("@receive",SqlDbType.NVarChar,20),
new SqlParameter("@send",SqlDbType.NVarChar,20),
new SqlParameter("@title",SqlDbType.NVarChar,20),
new SqlParameter("@content",SqlDbType.NVarChar,100)};
SqlCommand cmd = new SqlCommand();
parms[0].Value = receive;
parms[1].Value = send;
parms[2].Value = title;
parms[3].Value = content;
foreach (SqlParameter parm in parms)
cmd.Parameters.Add(parm);
using (SqlConnection conn = new SqlConnection(SqlHelper.ConnectionStringLocalTransaction))
{
conn.Open();
cmd.Connection = conn;
cmd.CommandType = CommandType.Text;
cmd.CommandText = SQL_INSERT_MESSAGE;
int val = cmd.ExecuteNonQuery();
cmd.Parameters.Clear(); //清空sqlCommand命令中的参数;
if (val > 0)
return true;
else
return false;
}
}
}
}
请问需要怎么改呀,需要声明么? 展开
5个回答
展开全部
1.看看你的App_Code里有没有SqlHelper这个CS
2.如果有,看看它的namespace是什么
3.在你需要的地方useing这个namespace
4.问题解决
2.如果有,看看它的namespace是什么
3.在你需要的地方useing这个namespace
4.问题解决
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
看看你的App_Code里有没有SqlHelper这个CS
SqlHelper是一个数据库操作类,网上有可以下载一个。
SqlHelper是一个数据库操作类,网上有可以下载一个。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你使用了未定义过的变量,或者定义过但当前位置不在其作用域内。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
看看你的App_Code里有没有SqlHelper这个CS
SqlHelper是一个数据库操作类
SqlHelper是一个数据库操作类
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询