// 디비접속 및 프로시저 실행
using System.Data.SqlClient;
public bool updDB(string sSpName, string sParam)
{
//TraceService("start updDB");
SqlConnection Con = new SqlConnection("Server=디비서버아이피;database=디비명;user id=사용자아이디;password=비번");
SqlCommand Cmd = null;
string strSQL;
strSQL = "exec " + sSpName + " '" + sParam + "'";
TraceService("strSQL = [" + strSQL + "]");
try
{
Con.Open();
Cmd = Con.CreateCommand();
Cmd.CommandText = strSQL;
int nRet = Cmd.ExecuteNonQuery();
}
catch (Exception ex)
{
TraceService("Error! updDB db sql err msg = [" + ex.Message + "]");
}
finally
{
if (Cmd != null)
{
Cmd.Dispose();
Cmd = null;
}
if (Con != null)
{
Con.Close();
Con.Dispose();
Con = null;
}
}
//TraceService("end updDB");
return true;
}
'C#' 카테고리의 다른 글
[C#] txt파일 일부분 내용 수정 (0) | 2016.10.04 |
---|---|
[C#] 와일드카드로 문자열 비교 (Compares wildcard to string) (0) | 2016.09.29 |
[C#] Error 0x80040154 (0) | 2016.09.22 |
[C#] 웹에서 ASPNET 버전 노출 방지 (0) | 2016.09.14 |
[C#] C,C++ dll 로드시 지정된 모듈을 찾을 수 없습니다. (Exception from HRESULT: 0x8007007E) (0) | 2016.08.31 |