일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 디자인 패턴
- MDB Select
- JSON
- 경기도 버스
- Cell Border Style
- MDB Connect
- Json.NET
- solid
- sqlite3
- GDI+
- 시
- eventhandler
- C# 파일 암/복호화
- C# MDB Handle
- Excel Cell Format
- C# MDB
- WPF
- TDD
- MVC
- 객체지향
- DrawRectangle
- 경기도 버스정보시스템
- c#
- DrawEllipse
- Winform
- 공공 데이터 포털
- 버스 API
- delegate
- NUnit
- eventargs
Archives
- Today
- Total
White Whale Studio
mssql - c# sql문 호출시 parameters를 기반으로 호출할때! 본문
반응형
- protected void Page_Load(object sender, System.EventArgs e) {
- if (!Page.IsPostBack) {
- SqlConnection MyConnection;
- SqlCommand MyCommand;
- SqlDataReader MyReader;
- SqlParameter ProductNameParam;
- MyConnection = new SqlConnection();
- MyConnection.ConnectionString = ConfigurationManager.ConnectionStrings["AppConnectionString1"].ConnectionString;
- MyCommand = new SqlCommand();
- MyCommand.CommandText = "SELECT * FROM PRODUCTS WHERE PRODUCTNAME = @PRODUCTNAME";
- MyCommand.CommandType = CommandType.Text;
- MyCommand.Connection = MyConnection;
- ProductNameParam = new SqlParameter();
- ProductNameParam.ParameterName = "@PRODUCTNAME";
- ProductNameParam.SqlDbType = SqlDbType.VarChar;
- ProductNameParam.Size = 25;
- ProductNameParam.Direction = ParameterDirection.Input;
- ProductNameParam.Value = "CHAI";
- MyCommand.Parameters.Add(ProductNameParam);
- MyCommand.Connection.Open();
- MyReader = MyCommand.ExecuteReader(CommandBehavior.CloseConnection);
- GridView1.DataSource = MyReader;
- GridView1.DataBind();
- MyCommand.Dispose();
- MyConnection.Dispose();
- }
- }
반응형
'IT Engineering > .Net (WPF)' 카테고리의 다른 글
csExWB WebBrowser Control DLL Error (0) | 2014.07.07 |
---|---|
[WPF] ClickOnce 배포시 Strong name signature not valid for this assembly stdole.dll. 에러 (0) | 2014.06.10 |
[WPF] 윈도우간 데이터 교환, 유저 컨트롤간 데이터 교환을 위한 방법 (4) | 2013.11.01 |
[WPF/C#] 첨부, 컨텐츠 데이터 파일의 호출 및 사용 (0) | 2013.10.02 |
[WPF] 애니메이션 / Animation (0) | 2013.09.27 |
Comments