DbServer.OrderDescend 方法 (__Usual, FileSpec, __Usual) |
命名空间: XSharp.VO.SDK
提示: |
---|
如果您使用 DbServer:OrderDescend() 和范围,您需要交换顶部和底部范围值!
X# 1oServer:OrderScope (TOPSCOPE, cFrom) 2oServer:OrderScope (BOTTOMSCOPE, cTo) 3oServer:OrderDescend(,, TRUE) 4oServer:OrderScope (TOPSCOPE, cTo) 5oServer:OrderScope (BOTTOMSCOPE, cFrom) |
1LOCAL oDBCust AS DBServer 2oDBCust := Customer{} 3oDBCust:CreateOrder("Last", "customer", "oDBCust:LastName") 4oDBCust:SetOrderCondition(,,,,,,,,,, TRUE) 5oDBCust:CreateOrder("First", "customer", "oDBCust:FirstName") 6oDBCust:SetOrder("Last") // Last最初是按升序创建的 7oDBCust:OrderDescend(,, TRUE) // 将其交换为降序 8// Last现在将按降序处理 9oDBCust:SetOrder("First") // First最初是按降序创建的 10oDBCust:OrderDescend(,, FALSE) // 将其交换为升序 11// First现在将按升序处理