ASP自定义函数,仿VBA中域函数DLookup
发布时间:2006-10-14 3:12:54   收集提供:gaoqian
Function dlookup(strFieldName, strTableName, strWhere, objConn)
    '参考Access VBA 中的Dlookup函数
    '由于环境不同,加了ObjConn参数,直接将Adodb.connection直接调进来
    Dim strsql
    Dim rs
    Set rs = server.CreateObject("adodb.recordset")
    '下面要调用外部的一个自定义函数 checksql()
    strFieldName = checksql(strFieldName)
    If strWhere <> "" Then
        strWhere = " where " & strWhere
    End If
    strsql="select "&strfieldname&" from "&strtablename&" " & strwhere
    'debugstop strsql
    On Error Resume Next
    rs.Open strsql, objConn, 1, 1
    If Err <> 0 Then
        response.write Err.Description
        response.end()
    End If
   
    If rs.EOF And rs.BOF Then
        dlookup = ""
    Else
        '要调用一个自定义函数 NZ
        '详细内容请参考 ACCESS VBA 帮助中的资料
        dlookup = Nz(rs(strFieldName), "")
    End If
    rs.Close
End Function
 
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50