0

我希望有人能帮我想出这个问题,因为我被困住了。

我们正在慢慢地将 ASP Classic 网站迁移到 .NET Web 应用程序。我偶然发现了以下功能。该函数将返回一个由 hml a-tags 组成的字符串数组。

Private Function getFullPathLinks(lNodeId, sPath, sDocTemplate)
    Dim sql, recordSet, rsTmp
    Dim arrPath, sResult
    Dim lDocId

    lDocId  = getDocumentId(lNodeId)

    sql = "SELECT parent_id, label FROM wt_node WHERE (node_id = " & lNodeId & ")"
    Set recordSet = execSqlCache(oConn,sql,Array(),Array("wt_node"))

    If Not (recordSet.Bof And recordSet.Eof) Then

        If sDocTemplate <> "" Then
            sPath = sPath & "|" & "<a href='" & sDocTemplate & "?nodeid=" & lNodeId & "&documentid=" & lDocId & "'>" & recordSet("label") & "</a>"
        Else
            sPath = sPath & "|" & recordSet("label")
        End If


        getFullPathLinks recordSet("parent_id"), sPath
    End If
    recordSet.Close
    Set recordSet = Nothing

    arrPath = arrReverse(Split(sPath,"|"))
    sResult = Join(arrPath,sPathDelimiter)
    If Right(sResult,Len(sPathDelimiter)) = sPathDelimiter Then sResult = Left(sResult,Len(sResult)-Len(sPathDelimiter))

    getFullPathLinks    = sResult

End Function

该函数在最后调用自身,这在我使用 DataReaders 与 SQL 数据库对话的 .NET 实现中无法正常工作。

我可以遵循与上述相同的结构,而是使用 DataReader 以外的其他东西来实现这一点吗?

4

1 回答 1

1

我不确定您使用的是什么 SQL Server 版本,但您是否看过 SQL 中的递归查询?它旨在在单个数据库调用中检索分层数据。看一看:

http://msdn.microsoft.com/en-us/library/ms186243(v=sql.105).aspx

于 2012-08-09T17:23:48.643 回答