제목 : 03.SQL서버의Pubs데이터베이스에연결하기.aspx(C#)
<%@ Page Language="C#" Debug="True" %>
<%@ Import NameSpace="System.Data" %>
<%@ Import NameSpace="System.Data.SqlClient" %>
<script runat="server">
// 페이지가 로드되면 실행이 된다.
protected void Page_Load(Object src, EventArgs e)
{
//[1] Connection 객체를 선언
SqlConnection objConnection;
//[2] Connection 객체를 생성
objConnection = new SqlConnection();
//[3] 연결 문자열 생성
string strConnection = "server=localhost;database=pubs;uid=sa;pwd=";
objConnection.ConnectionString = strConnection;
//[4] Connection 객체의 Open 메서드를 사용해서 데이터베이스와의 연결을 열어준다.
objConnection.Open();
}
</script>
<center>SQL 서버의 Pubs 데이터베이스에 연결 되었습니다.</center>