conn.asp 데이터베이스 열기
<%
dim connstr,mysql,myconn
connstr="provider=microsoft.jet. oledb.4.0;data source="& server.mappath("ysk.mdb")
set myconn=server.createobject("adodb.connection")
myconn.connectionstring= connstr
myconn.open
%>
<%
///insert 문("Member" 테이블에 삽입, 필드명 생략, 1행, 7개 값 삽입)
mysql="멤버 값에 삽입 ('"& hyxm &"','"& hymm &"',now,'"& hyem &"', '"& hytx &"','0','0')"
myconn.execute mysql
///select 문(" 회원" 테이블" 회원 별명"은 제출된 hyxm과 동일합니다)
mysql="select member Nick from member where membernick='"& hyxm &"'"
set myres =myconn.execute( mysql)
///updata 문("회원 닉네임"과 일치하는 "회원 로그인 수"를 늘리기 위해 "회원" 테이블 수정)
mysql="update member SET member 로그인 수 = 회원 로그인 수 + 1 여기서 회원 별명 ='"&name&"'"
myconn.execute mysql
%>