接口 Result
-
- 所有超级接口:
QueryResult
- 所有已知子接口:
AddResult,DocResult,InsertResult,RowResult,SqlResult
- 所有已知实现类:
AbstractDataResult,AddResultImpl,DocResultImpl,InsertResultImpl,RowResultImpl,SqlMultiResult,SqlSingleResult,SqlUpdateResult,StatementExecuteOk,UpdateResult
public interface Result extends QueryResult
Base result.
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 longgetAffectedItemsCount()Get the count of affected items from manipulation statements.Iterator<Warning>getWarnings()Get warnings generated during statement execution.intgetWarningsCount()Get the number of warnings generated during statement execution.
-
-
-
方法详细资料
-
getAffectedItemsCount
long getAffectedItemsCount()
Get the count of affected items from manipulation statements. This method forces internal buffering of the result.- 返回:
- count
-
getWarningsCount
int getWarningsCount()
Get the number of warnings generated during statement execution. This method forces internal buffering of the result.- 返回:
- number of warnings
-
-