DBhelper

Posted whatarey

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DBhelper相关的知识,希望对你有一定的参考价值。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Data;
using System.Data.SqlClient;
namespace WindowsFormsApplication1
{
    class DBhelper
    {

        public static SqlConnection conn;
        public static void connection() {
            conn = new SqlConnection();
            conn.Open();
        }
        //增加
        public static bool adm(string sqla) {
                        connection();
                        SqlCommand com = new SqlCommand(sqla, conn);
                        int pass = com.ExecuteNonQuery();
                        conn.Close();
                        return pass > 0;
        
        }
        //查询
        public static DataTable selectDB(string sqla) {

            DataTable dt = new DataTable();
            SqlDataAdapter dap = new SqlDataAdapter(sqla, conn);
            dap.Fill(dt);
            conn.Close();
            return dt;


        }


    }
}

 

以上是关于DBhelper的主要内容,如果未能解决你的问题,请参考以下文章

Web项目设计与开发 ——————DBHelper测试

C# DBHelper 第二版

EF_DbHelper

DBHelper连接数据库

如何通过DbProviderFactory 构建DBHelper帮助类

使用DBHelper类来实现登录认证