output 사용하기
아래와 같이 test라는 이름의 procedure를 작성하고 @temp1, @temp2를 output으로 설정해보자. create proc test ( @temp1 int output, @temp2 varchar(20) output ) as begin set @temp1 = 1 set @temp2 = 'outValue' end Form1에서 아래와 같이 코드를 작성한후 실행해 본다. public Form1() { InitializeComponent(); test(); } private void test() { string connStr = @"Data Source=SqlServer이름;Initial Catalog=DataBase이름;Integrated Security=True"; SqlConnection..
청강컴정/C#
2009. 5. 10. 01:20