728x90
ConnString = "DB연결문 넣으시구요"
SQL = "select userId, userName from tblUser with(nolock) order by userName"
Set db = Server.CreateObject("ADODB.Connection")
db.Open ConnString
Set Tbl = db.execute(SQL)
if Tbl.Eof or Tbl.Bof then
cnt=0
else
AllRec = Tbl.GetString(2) ' 레코드셋을 한방에 저장
recRows = split(AllRec, chr(13))
cnt=1
end if
Tbl.close ' 연결을 바로 끊습니다.
set Tbl=nothing
if cnt=1 then
for i=0 to Ubound(recRows)-1 ' 행의 수만큼 루프를 돌려서 데이터를 표시해 줍니다.
recCols = split(recRows(i), chr(9))
response.write "ID:"& recCols(0) &", 이름:"& recCols(1) &"<br>"
next
end if
'asp,ms-sql' 카테고리의 다른 글
ms-sql 특정 문자열이 포함된 프로시져 찾기 (0) | 2014.04.24 |
---|---|
자바스크립트 한글만, 숫자만, 영문만 허용 체크 (0) | 2014.04.24 |
ASP 에서 인쇄 여백설정하기 (0) | 2014.04.24 |
T-SQL로 텍스트파일 쓰기 (0) | 2014.04.24 |
윈도우2003서버에 FTP운영시 사용자격리방법 (0) | 2014.04.24 |