林新手,我把我的數據庫連接類:如何解決我的連接類?在C#</p> <p>
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();
}
但它不是工作。
如何創建一個連接類並在其他類中調用它?
請幫幫我!
感謝。
我們展示你的代碼。 – Nasreddine
請顯示您的代碼。 – besworland
據我所知,你想封裝一個數據庫連接到類中,並注入其他類以重用它,請描述你要做什麼 – sll