首页 > 数据库技术 > 详细

dbserver

时间:2015-04-17 01:07:17      阅读:247      评论:0      收藏:0      [点我收藏+]

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.SqlClient;
using System.Data;

namespace 线程
{
class DBserver
{
private SqlConnection sc = new SqlConnection();

public DBserver()
{

sc.ConnectionString = "server=.;database=test;uid =sa;pwd=123456; ";//Trusted_Connection=true;
}

public void Open()
{
sc.Open();

}

public void Close()
{
sc.Close();
}

public DataSet DoSearch(string sql)
{
DataSet ds = new DataSet();
try
{
SqlDataAdapter sda = new SqlDataAdapter(sql, sc);
sda.Fill(ds);
Close();
}
catch (Exception e)
{
throw e;
}
finally
{
Close();
}
return ds;
}


public int Updata(string sql)
{
try
{
SqlCommand cmd = new SqlCommand();
cmd.Connection = sc;
cmd.CommandText = sql;
Open();
int i = cmd.ExecuteNonQuery();
return i;
}
catch (Exception e)
{
throw e;
}
finally
{
Close();
}
}


}
}

dbserver

原文:http://www.cnblogs.com/stelva/p/4433612.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!