
原始的ASP.NET数据库查询,所需要的帮助类
- public class DBHelper
- {
//创建全局对象
- static SqlConnection conn = new SqlConnection("server=localhost;database=StuDB;uid=root;pwd=123456;charset=utf8")
-
- //断开时查询
- public static DataSet GetAll(string sql)
- {
- //打开连接
- conn.Open();
- //创建断开时查询对象
- SqlDataAdapter sda = new SqlDataAdapter(sql, conn);
- //创建数据集
- DataSet ds = new DataSet();
- //填充数据
- sda.Fill(ds);
- //关闭连接
- conn.Close();
- //返回数据
- return ds;
- }
- //查询单个值
- public static object GetOne(string sql)
- {
- //打开连接
- conn.Open();
- //创建操作对象
- SqlCommand sm = new SqlCommand(sql, conn);
- //执行方法
- object obj = sm.ExecuteScalar();
- //关闭连接
- conn.Close();
- //返回数据
- return obj;
- }
- //增删改
- public static int ExecuteNonquery(string sql)
- {
- //打开连接
- conn.Open();
- //创建操作对象
- SqlCommand sm = new SqlCommand(sql, conn);
- //执行方法
- int row = sm.ExecuteNonQuery();
- //关闭连接
- conn.Close();
- //返回数据
- return row;
- }
- }
评价