ADO.NET 을 이용해 Oracle 을 써보자!
출처 : http://msdn.microsoft.com/en-us/library/system.data.oracleclient.oracleconnection.aspx
using (OracleConnection connection = new OracleConnection(constring))
{
OracleCommand cmd = new OracleCommand();
cmd.CommandType = CommandType.StoredProcedure; // 타입은 저장프로시저
cmd.CommandText = ""; // 저장프로시저 이름
cmd.Connection = connection;
try
{
connection.Open();
cmd.ExecuteNonQuery();
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
}
{
OracleCommand cmd = new OracleCommand();
cmd.CommandType = CommandType.StoredProcedure; // 타입은 저장프로시저
cmd.CommandText = ""; // 저장프로시저 이름
cmd.Connection = connection;
try
{
connection.Open();
cmd.ExecuteNonQuery();
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
}
'Silverlight' 카테고리의 다른 글
[Silverlight] Silverlight에서 웹 팝업 창 띄우기 (0) | 2012.11.02 |
---|---|
[Silverlight 4.0] GridSplitter 사용하기 (0) | 2011.09.20 |
[Silverlight] 컨트롤에 ToolTip 넣기 (0) | 2011.01.27 |
Mode TwoWay 를 이용해 DataGrid 사용하기 (0) | 2010.10.05 |
Silverlight 4 가 릴리즈 되었습니다. (update build is 4.0.50826.0) (0) | 2010.09.03 |
Ria Services 관련자료 모음 (0) | 2010.07.27 |
Visual Studio 2010에 Silverlight 4 개발환경 구축하기 (0) | 2010.07.27 |