|
public void JiSuanZongHe (string faid, string bjid, string xsid)
{
string connectionString = ConfigurationSettings.AppSettings ["CrmSqlConnect"];
string error = "";
SqlConnection m_conn = new SqlConnection (connectionString);
m_conn.Open ();
SqlCommand m_com = new SqlCommand ("P_JISUAN_ZHCJ '" + faid + "', '" + bjid + "', '" + xsid + "', '" + error + "'", m_conn);
m_com.CommandType = CommandType.Text;
m_com.ExecuteNonQuery ();
m_conn.Close ();
} |
|