新手求教,B/S模式,用C#实现对SQL的连接并实现增删改查,求代码

 我来答
昵称已存在已为你推荐昵称d1EsP
2013-05-01 · TA获得超过372个赞
知道答主
回答量:152
采纳率:0%
帮助的人:64.9万
展开全部
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.SqlClient;
using System.Data;

namespace NewClient
{
class DBHelper
{
static string str = "data source=.;initial catalog=你的数据库名;integrated security=true";
public SqlConnection con = new SqlConnection(str);

/// <summary>
/// 查询单个值
/// </summary>
/// <param name="sql"></param>
/// <returns></returns>
public object Scalar(string sql)
{
object o = null;
try
{

con.Open();
SqlCommand cmd = new SqlCommand(sql, con);
o = cmd.ExecuteScalar();
}
catch (Exception)
{

throw;
}
finally
{
con.Close();
}
return o;

}
/// <summary>
/// 查询多个值
/// </summary>
/// <param name="sql"></param>
/// <returns></returns>
public SqlDataReader Reader(string sql)
{
SqlDataReader o = null;
try
{

con.Open();
SqlCommand cmd = new SqlCommand(sql, con);
o = cmd.ExecuteReader(CommandBehavior.CloseConnection);
}
catch (Exception)
{

throw;
}
return o;

}
/// <summary>
/// 增删改
/// </summary>
/// <param name="sql"></param>
/// <returns></returns>
public int NonQuery(string sql)
{
int o = -1;
try
{

con.Open();
SqlCommand cmd = new SqlCommand(sql, con);
o = cmd.ExecuteNonQuery();
}
catch (Exception)
{

throw;
}
finally
{
con.Close();
}
return o;

}
}
}
天涯路易2011
2013-04-30 · TA获得超过263个赞
知道小有建树答主
回答量:351
采纳率:0%
帮助的人:244万
展开全部
c#里B/S和C/S模式连接和操作数据可的代码相同,都用的ADO.Net。你去下ADO.Net的视频看吧,很简单
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
rkc009
2013-04-30 · TA获得超过1499个赞
知道大有可为答主
回答量:2098
采纳率:60%
帮助的人:1683万
展开全部
上 51aspx 去下吧 一大把 我学习的时候也在上面下 的案列的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式