| 程序包 | 说明 |
|---|---|
| net.gdface.facelog.db |
| 限定符和类型 | 类和说明 |
|---|---|
static class |
TableManager.Action.BaseAdapter<B> |
class |
TableManager.BaseAdapter.ListAction |
| 限定符和类型 | 方法和说明 |
|---|---|
int |
TableManager.loadAll(int startRow,
int numRows,
TableManager.Action<B> action)
Loads the given number of rows from table, given the start row and dealt with action.
|
int |
TableManager.BaseAdapter.loadAll(int startRow,
int numRows,
TableManager.Action<B> action) |
int |
TableManager.loadAll(TableManager.Action<B> action)
Loads each row from table and dealt with action.
|
int |
TableManager.BaseAdapter.loadAll(TableManager.Action<B> action) |
int |
TableManager.loadBySqlForAction(java.lang.String sql,
java.lang.Object[] argList,
int[] fieldList,
int startRow,
int numRows,
TableManager.Action<B> action)
Load each the elements using a SQL statement specifying a list of fields to be retrieved and dealt by action.
|
int |
TableManager.loadByWhere(java.lang.String where,
int[] fieldList,
int startRow,
int numRows,
TableManager.Action<B> action)
Retrieves each row of B bean given a sql where clause and a list of fields, and startRow and numRows,
and dealt with action.
|
int |
TableManager.BaseAdapter.loadByWhere(java.lang.String where,
int[] fieldList,
int startRow,
int numRows,
TableManager.Action<B> action) |
int |
TableManager.loadByWhere(java.lang.String where,
int[] fieldList,
TableManager.Action<B> action)
Retrieves each row of B bean given a sql where clause, and a list of fields,
and dealt with action.
|
int |
TableManager.BaseAdapter.loadByWhere(java.lang.String where,
int[] fieldList,
TableManager.Action<B> action) |
int |
TableManager.loadByWhere(java.lang.String where,
TableManager.Action<B> action)
Retrieves each row of B bean given a sql 'where' clause and dealt with action.
|
int |
TableManager.BaseAdapter.loadByWhere(java.lang.String where,
TableManager.Action<B> action) |
int |
TableManager.loadByWhereForAction(java.lang.String where,
int[] fieldList,
int startRow,
int numRows,
TableManager.Action<B> action)
Retrieves each row of B bean given a sql where clause and a list of fields, and startRow and numRows,
and dealt wity action
It is up to you to pass the 'WHERE' in your where clauses.
|
int |
TableManager.BaseAdapter.loadByWhereForAction(java.lang.String where,
int[] fieldList,
int startRow,
int numRows,
TableManager.Action<B> action) |
int |
TableManager.loadUsingTemplate(B bean,
int[] fieldList,
int startRow,
int numRows,
int searchType,
TableManager.Action<B> action)
Loads each row from a template one, given the start row and number of rows and dealt with action.
|
int |
TableManager.loadUsingTemplate(B bean,
int startRow,
int numRows,
TableManager.Action<B> action)
Loads each row from a template one, given the start row and number of rows and dealt with action.
|
int |
TableManager.BaseAdapter.loadUsingTemplate(B bean,
int startRow,
int numRows,
TableManager.Action<B> action) |
int |
TableManager.loadUsingTemplate(B bean,
TableManager.Action<B> action)
Loads each row from a template one and dealt with action.
|
int |
TableManager.BaseAdapter.loadUsingTemplate(B bean,
TableManager.Action<B> action) |
Copyright © 2019. All Rights Reserved.