2024-11-03 09:59:10
原则是写在任何地方都可以,主要用来连接字符串。写法如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;//首先导入命名空间
using System.Data.SqlClient;//首先导入命名空间
namespace EJ_Market.Model.Common
{
class DataBase
{
SqlConnection con = null;
public SqlConnection GetCon()
if (con == null)
{
con=new
SqlConnection("server=www.test.edu.com;uid=sa;pwd=ln881205;database=EJmarket")//server=.点代表本地服务器;uid是混合模式登陆的账号;pwd是混合模式登陆的密码database是数据库名称
}
if (con.State == ConnectionState.Closed)
{
con.Open();
}
return con;
}
//end GetCon public void GetClose()
{
if (con.State == ConnectionState.Open)
{
con.Close();
}
}//end GetClose
}//end class
}//end namespace
扩展资料:
连接数据库、操作数据库,本质是利用数据库提供的动态链接库MySql.Data.dll进行操作。MySql.Data.dll提供以下8个类:
MySqlConnection: 连接MySQL服务器数据库。
MySqlCommand:执行一条sql语句。
MySqlDataReader: 包含sql语句执行的结果,并提供一个方法从结果中阅读一行。
MySqlTransaction: 代表一个SQL事务在一个MySQL数据库。
MySqlException: MySQL报错时返回的Exception。
MySqlCommandBuilder: Automatically generates single-table commands used to reconcile changes made to a DataSet with the associated MySQL database.
MySqlDataAdapter: Represents a set of data commands and a database connection that are used to fill a data set and update a MySQL database.
MySqlHelper: Helper class that makes it easier to work with the provider.
2024-11-03 06:24:19
2024-11-03 03:40:49
2024-11-03 17:54:18
2024-11-03 03:22:30