using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Data.SqlClient; using System.Data; namespace WindowsFormsApp1_ZQA { class DBHpelr { public SqlConnection connection() { string str = "Date Source=.;initial Catalog=mySchool_zqa;integrated Security=True"; SqlConnection sc = new SqlConnection(str); sc.Open();//打开数据库 // this.scl = sc; return sc; } public SqlCommand command(string sql) { SqlCommand sc = new SqlCommand(sql, connection()); return sc; } public int Excute(string sql) { return command(sql)ExecuteNonQuery(); } public SqlDataReader read(string sql) { return command(sql)ExecuteReader(); } } }
时间: 2024-02-15 11:27:55 浏览: 40
.NETCore添加区域Area代码实例解析
这段代码是用 C# 语言编写的,主要是用于数据库连接和 SQL 语句的执行。其中定义了一个 DBHpelr 类,包含了连接数据库、执行 SQL 语句等方法。在连接数据库时,使用了连接字符串,指定了要连接的数据库服务器、数据库名称和身份验证方式。在执行 SQL 语句时,使用了 SqlCommand 对象,可以执行查询、插入、更新等操作,并返回相应的结果。其中,Excute 方法用于执行非查询 SQL 语句,返回受影响的行数;read 方法用于执行查询 SQL 语句,返回一个 SqlDataReader 对象,可以通过它来获取查询结果。
阅读全文