C#链接MySQL数据库的实现步骤有哪些
答案:2 悬赏:10 手机版
解决时间 2021-02-24 22:28
- 提问者网友:做自己de王妃
- 2021-02-24 07:04
C#链接MySQL数据库的实现步骤有哪些
最佳答案
- 五星知识达人网友:低音帝王
- 2021-02-24 08:34
C#连接数据库有以下几个步骤:
1:使用配置的数据库连接串,创建数据库连接 Connection 对象
2:构建操作的sql语句
3:定义command对象
4:打开数据连接
5:执行命令
举一个例子,删除操作
public class StudentService
{
//从配置文件中读取数据库连接字符串
private readonly static string connString = ConfigurationManager.ConnectionStrings["accpConnectionString"].ToString();
private readonly static string dboOwner = ConfigurationManager.ConnectionStrings["DataBaseOwner"].ToString();
AdoNetModels.Student model = new Student();
#region 删除数据1
public int DeleteStudent(int stuID)
{
int result = 0;
// 数据库连接 Connection 对象
SqlConnection connection = new SqlConnection(connString);
// 构建删除的sql语句
string sql = string.Format("Delete From Student Where stuID={0}", stuID);
// 定义command对象
SqlCommand command = new SqlCommand(sql, connection);
try
{
connection.Open();
result = command.ExecuteNonQuery(); // 执行命令
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
finally
{
connection.Close();
}
return result;
}
#endregion
1:使用配置的数据库连接串,创建数据库连接 Connection 对象
2:构建操作的sql语句
3:定义command对象
4:打开数据连接
5:执行命令
举一个例子,删除操作
public class StudentService
{
//从配置文件中读取数据库连接字符串
private readonly static string connString = ConfigurationManager.ConnectionStrings["accpConnectionString"].ToString();
private readonly static string dboOwner = ConfigurationManager.ConnectionStrings["DataBaseOwner"].ToString();
AdoNetModels.Student model = new Student();
#region 删除数据1
public int DeleteStudent(int stuID)
{
int result = 0;
// 数据库连接 Connection 对象
SqlConnection connection = new SqlConnection(connString);
// 构建删除的sql语句
string sql = string.Format("Delete From Student Where stuID={0}", stuID);
// 定义command对象
SqlCommand command = new SqlCommand(sql, connection);
try
{
connection.Open();
result = command.ExecuteNonQuery(); // 执行命令
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
finally
{
connection.Close();
}
return result;
}
#endregion
全部回答
- 1楼网友:鱼芗
- 2021-02-24 10:02
c#连接数据库有以下几个步骤:
1:使用配置的数据库连接串,创建数据库连接 connection 对象
2:构建操作的sql语句
3:定义command对象
4:打开数据连接
5:执行命令
举一个例子,删除操作
public class studentservice
{
//从配置文件中读取数据库连接字符串
private readonly static string connstring = configurationmanager.connectionstrings["accpconnectionstring"].tostring();
private readonly static string dboowner = configurationmanager.connectionstrings["databaseowner"].tostring();
adonetmodels.student model = new student();
#region 删除数据1
public int deletestudent(int stuid)
{
int result = 0;
// 数据库连接 connection 对象
sqlconnection connection = new sqlconnection(connstring);
// 构建删除的sql语句
string sql = string.format("delete from student where stuid={0}", stuid);
// 定义command对象
sqlcommand command = new sqlcommand(sql, connection);
try
{
connection.open();
result = command.executenonquery(); // 执行命令
}
catch (exception ex)
{
console.writeline(ex.message);
}
finally
{
connection.close();
}
return result;
}
#endregion
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯