Пример #1
0
    public void delete(Nhap_CD_Sach ncds)
    {
        string cn = "Data Source=.\\SQLEXPRESS;AttachDbFilename=|DataDirectory|QLBansach_Data.mdf;Integrated Security=True;User Instance=True";

        con = new SqlConnection(cn);
        con.Open();
        SqlCommand cmd = new SqlCommand();

        cmd.Connection  = con;
        cmd.CommandType = System.Data.CommandType.StoredProcedure;
        cmd.CommandText = "st_xoacdsach";
        cmd.Parameters.Add("@macd", System.Data.SqlDbType.Int).Value = ncds.macd;
        cmd.ExecuteNonQuery();
        cmd.Dispose();
        con.Close();
    }
Пример #2
0
    public void insert(Nhap_CD_Sach ncds)
    {
        string cn = "Server=ltp1305.mssql.somee.com;Database=ltp1305;User Id=TheMadKitten_SQLLogin_1;Password=66rbhow211;";

        con = new SqlConnection(cn);
        con.Open();
        SqlCommand cmd = new SqlCommand();

        cmd.Connection  = con;
        cmd.CommandType = System.Data.CommandType.StoredProcedure;
        cmd.CommandText = "st_themcdsach";
        cmd.Parameters.Add("@tenchude", System.Data.SqlDbType.NVarChar, 100).Value = ncds.tenchude;
        cmd.ExecuteNonQuery();
        cmd.Dispose();
        con.Close();
    }