我是 C# 的新手
我把我的数据库连接到一个类:
public class Connection
{
public string SetConnection()
{
string connectionstring = "server=SURI-PC;database=cms;Integrated Security=True";
return connectionstring;
}
}
然后,我在主类中调用它:
public static void Main(string[] args)
{
Connection conObject = new Connection();
SqlConnection scon = new SqlConnection(conObject.SetConnection());
String sql = "insert into category(cat_id, cat_name) values('C03', 'Browser')";
SqlCommand cmd = new SqlCommand(sql, scon);
cmd.ExecuteNonQuery();
}
但它不起作用。
如何创建连接类并在其他类中调用它?
请帮我!
谢谢。