ADO.NET + ASP.NET DB 연동 간단한 예제
/* | |
* @breif : SQL 서버 데이터를 사용 | |
*/ | |
using System.Data; | |
using System.Data.SqlClient; |
/* | |
* @brief : OLEDB 사용 | |
*/ | |
using System.Data; | |
using System.Data.OleDB; |
protected void Page_Load(object sender, EventArgs e) | |
{ | |
// IIS 의 경우 기본 localhost 를 설정한다(192.0.0.1), id, password 및 database 이름을 쿼리로 설정 | |
string source = @"Server=localhost;uid=sa;pwd=1234;database=student"; | |
//1. db connect | |
SqlConnection conn = new SqlConnection(source); | |
conn.Open(); | |
//2. instruction | |
String sql = "SELECT * FROM IMAGES"; | |
SqlCommand cmd = new SqlCommand(sql, conn); | |
//3. instruction exe | |
SqlDataReader reader = cmd.ExecuteReader(); | |
//4. show pages | |
Response.Write("<table border=1>"); | |
while (reader.Read()) | |
{ | |
Response.Write("<tr>"); | |
for (int i = 0; i<reader.FieldCount; i++) | |
{ | |
Response.Write("<td>"+reader[i]+"</td>"); | |
} | |
Response.Write("</tr>"); | |
} | |
Response.Write("</table>"); | |
// 5. db close | |
reader.Close(); | |
conn.Close(); | |
} |
C# - 네이밍 룰 (4) | 2018.09.04 |
---|---|
ASP.NET - 웹 켄버스(Silver Light) (0) | 2018.01.02 |
C# - 들여쓰기 (0) | 2017.12.31 |
C# - error CS0227: Unsafe code (0) | 2017.12.30 |
C# - 크로스 스레드 작업이 잘못 되었습니다. (0) | 2017.12.30 |
댓글 영역