Package org.apache.ibatis.executor
Class BatchResult
- java.lang.Object
-
- org.apache.ibatis.executor.BatchResult
-
public class BatchResult extends Object
- Author:
- Jeff Butler
-
-
Constructor Summary
Constructors Constructor Description BatchResult(MappedStatement mappedStatement, String sql)
BatchResult(MappedStatement mappedStatement, String sql, Object parameterObject)
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
addParameterObject(Object parameterObject)
MappedStatement
getMappedStatement()
Object
getParameterObject()
Deprecated.List<Object>
getParameterObjects()
String
getSql()
int[]
getUpdateCounts()
void
setUpdateCounts(int[] updateCounts)
-
-
-
Constructor Detail
-
BatchResult
public BatchResult(MappedStatement mappedStatement, String sql)
-
BatchResult
public BatchResult(MappedStatement mappedStatement, String sql, Object parameterObject)
-
-
Method Detail
-
getMappedStatement
public MappedStatement getMappedStatement()
-
getSql
public String getSql()
-
getParameterObject
@Deprecated public Object getParameterObject()
Deprecated.
-
getUpdateCounts
public int[] getUpdateCounts()
-
setUpdateCounts
public void setUpdateCounts(int[] updateCounts)
-
addParameterObject
public void addParameterObject(Object parameterObject)
-
-