接口的使用
gu.sql2java.TableManager.Action
使用TableManager.Action的程序包
-
gu.sql2java中TableManager.Action的使用
参数类型为TableManager.Action的gu.sql2java中的方法修饰符和类型方法说明intTableManager.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.intTableManager.loadAll(TableManager.Action<B> action) Loads each row from table and dealt with action.intTableManager.loadByJoinWhereForAction(String join, String where, Object[] argList, 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.intTableManager.loadByWhere(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.intTableManager.loadByWhere(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.intTableManager.loadByWhere(String where, TableManager.Action<B> action) Retrieves each row of B bean given a sql 'where' clause and dealt with action.intTableManager.loadByWhereForAction(String where, Object[] argList, 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.intTableManager.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.intTableManager.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.intTableManager.loadUsingTemplate(B bean, TableManager.Action<B> action) Loads each row from a template one and dealt with action.