string strConn = "Persist Security Info=False;database=数据库 ;server= 数据库所在服务器名或IP;user id=登陆用户名;pwd=密码";
SqlConnection myCn = new SqlConnection(strConn);
SqlCommand myCmd = new SqlCommand(要执行的语句,myCn);
try
{
myCn.Open();
myCmd.ExecuteNonQuery();
return 0;
}
catch(System.Data.SqlClient.SqlException e)
{
throw new Exception(e.Message);
}
finally
{
myCmd.Dispose();
myCn.Close();
}
1楼说的挺详细了,不过你vs都用2010了,为什么sqlserver还有2000的啊,这个落差有点大了。