'rs.getrows'에 해당되는 글 1건

  1. [2009/02/16] [ASP] RS.GetRows 처리

[ASP] RS.GetRows 처리

[■Web Programing/OO ASP OO]

    str_sql = " select * from aaaa "
    If Not rs.eof Then
        ArrCoaRows = rs.getrows
    End If
    rs.close
    Set rs = Nothing

    CoaCols = UBound(ArrCoaRows,1) '컬럼
    CoaRows = UBound(ArrCoaRows,2) '로우

    For rowCnt = 0 To CoaRows
       For colCnt = 0 To CoaCols
            response.wirte ArrCoaRows(colCnt, rowCnt) '0,0 1,0 거의 구구단과 흡사
       Next
    Next


크리에이티브 커먼즈 라이센스
Creative Commons License
TAG. ,