Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- jdbc driver
- xmldom
- JavaScript
- javascript 한글입력체크
- inner join
- 이미지가로길이
- 이미지세로길이
- XML
- MSSQL보안
- WML
- FileSystemObject
- 인젝션
- 한글입력체크
- asp함수
- instr
- join
- ERD
- 정규식
- VARIABLE
- SPLIT
- injection
- 자바기초
- array
- tempDB
- VarType
- wap
- sql랭킹
- sql순위
- update
- sql업데이트
Archives
- Today
- Total
3초기억력
classic asp) ADODB.Command 사용하여 Query 하기 본문
1. DB 객체 연결
Set db = Server.CreateObject("ADODB.Connection")
strConnection ="Provider=sqloledb;Data Source=DB서버,포트;Initial Catalog=DB명;User ID=사용자명;Password=비밀번호;"
db.CursorLocation = 3
db.Open strConnection
2. DB 프로시저 실행문
Set Cmd = Server.CreateObject("ADODB.Command")
With Cmd
.ActiveConnection = db
.CommandText = "프로시저명"
.CommandType = adCmdStoredProc
.Parameters.Append .CreateParameter("@idx", adInteger, adParamInput, 4, idx)
Set rs = .Execute
End With
If Not(rs.eof Or rs.bof) Then
getrowRs = rs.getRows()
End If
rs.close
Set rs = nothing
Set Cmd = Nothing
If isArray(getrowRs) Then
For i = 0 To ubound(getrowRs,2)
response.write "아이디 : " & getrowRs(1, i) & "<br>"
response.write "이름 : " & getrowRs(2, i) & "<br>"
Next
End If
3. DB RecordSet 실행문
sql = "select * from 회원테이블 where idx = ?"
Set Cmd = Server.CreateObject("ADODB.Command")
With Cmd
.ActiveConnection = db
.CommandType = adCmdText
.CommandText = sql
.Parameters.Append Cmd.CreateParameter("idx", adInteger, adParamInput, 0, idx)
End With
Set rs = Cmd.Execute()
Set Cmd = Nothing
If Not(rs.eof Or rs.bof) Then
id = rs("id")
name = rs("name")
Else
response.write "조회 안됨"
End If
Call closeRs(rs)
'플밍_ASP' 카테고리의 다른 글
iis 10에서 외부 smtp 네이버 계정으로 메일 보내기 (0) | 2023.07.27 |
---|---|
ASP 유니코드 변환 함수 (\u로 시작하는 유니코드를 한글로 변환) (0) | 2022.01.14 |
classic asp) 한글, utf-8, base64 인코딩/디코딩 (0) | 2021.03.24 |
[ASP] 아이디(이메일) 찾기 등에서 활용할 이메일 자리수 + '*' 치환 함수 (0) | 2018.06.22 |
classic asp 날짜 요일명 구하기 (0) | 2017.12.26 |
Comments