using System.Data;
using System.Data.SqlClient;
//创建连接字符串
string str = "Server=服务器IP; DataBase=数据库名; Uid=登录账号; Pwd=登录密码";
//创建数据库连接对象
SqlConnection con = new SqlConnection(str);
//创建执行者
SqlCommand com = new SqlCommand("你要执行的SQL语句", con);
//打开数据库连接
con.Open();
//执行如果是新增操作就执行如下语句
com.ExecuteNonQuery();
//关闭数据库
con.Close();