bool bcheckIsConnection = false;
SqlConnection oCnn = new SqlConnection();
try
{
oCnn.ConnectionString = "server=서버IP(예:58.227.21.50);database=DB이름;user=sa;pwd=1234;;
oCnn.Open();
bcheckIsConnection = true;
}
catch {
MessageBox.Show("에러 메시지");
}
if (bcheckIsConnection)
{
SqlCommand oCmm = new SqlCommand();
oCmm.CommandType = CommandType.Text;
oCmm.Connection = oCnn;
oCmm.CommandText = "쿼리문";
SqlDataReader oReader = oCmm.ExecuteReader();
oReader.Read();
try
{
/* 쿼리결과로 수행해야 할 작업 */
// ex) string name = oReader[0].Tostring();
oReader.Close();
oCnn.Close();
}
catch
{
oReader.Close();
oCnn.Close();
MessageBox.Show("에러메시지");
}
}
'Computerscience > C#' 카테고리의 다른 글
c# 훅크 사용법[스크랩] (0) | 2009.08.13 |
---|---|
DatagrideView에 쿼리 반환값 넣기[기초] (0) | 2009.02.13 |
메세지박스 활용법 (0) | 2008.09.04 |
C# 스토워드 프로시져로 쿼리 날리기. (0) | 2008.09.03 |
C#과 C++ 문법적으로 다른점 (0) | 2007.11.23 |