【paging_Class 分頁類】使用說明
阿新 • • 發佈:2018-11-30
類名:paging_Class
說明:分頁類
注意:
1) 支援百萬級資料分頁
2) 支援多種型別的SQL語法,比如 Left Join 等。
3) 自動儲存查詢中的錯誤情況,記錄儲存在:/Cache/Log 資料夾內
目錄:
型別 | 名稱 | 引數 | 返回 | 說明 |
屬性 [必需] | [paging].table= [ 檢索的資料庫表] | - | - | 設定檢索的資料庫表名 |
屬性 [必需] | [paging].order = [ 檢索資料排序方式] | - | - | 設定檢索排序方式 |
屬性 [可選] | [paging].method = [xml | record] | - | - | 設定檢索結果值的型別,為XML字串格式,或者是rs物件集 |
屬性 [可選] | [paging].where = [檢索資料庫的條件] | - | - | 設定檢索資料庫的條件 |
屬性 [可選] | [paging].fields = [檢索資料庫欄位] | - | - | 設定檢索資料庫的欄位 |
屬性 [可選] | [paging].pageSize = [Number] | - | - | 設定輸出資料庫記錄條數 |
屬性[可選] | [paging].currentPage=[Number] | - | - | 設定輸出記錄的頁碼 |
方法 | [paging].main() | - | [JSON] | 執行查詢並返回檢索結果 { result : [True | False], // 檢索結果 desc : [Empty | String], // 檢索出錯時的錯誤描述 pageCount : [Number], // 記錄總頁數 record : [Number], // 總記錄數 currentPage : [Number], // 當前頁碼 value : [Empty | xmlString | rs] // 檢索值 } |