Class QueryOptions
- java.lang.Object
-
- jetbrains.buildServer.serverSide.db.queries.QueryOptions
-
public class QueryOptions extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static QueryOptionsDEFAULT_RS_OPTIONSstatic QueryOptionsLARGE_RESULTSET_OPTIONSstatic QueryOptionsLARGE_RESULTSET_OPTIONS_MYSQLstatic QueryOptionsONE_ROW_RESULT_OPTIONS
-
Constructor Summary
Constructors Constructor Description QueryOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetFetchSize()intgetMaxRows()intgetResultSetConcurrency()intgetResultSetType()voidsetFetchSize(int fetchSize)voidsetMaxRows(int maxRows)voidsetResultSetConcurrency(int resultSetConcurrency)voidsetResultSetType(int resultSetType)StringtoString()
-
-
-
Field Detail
-
DEFAULT_RS_OPTIONS
public static final QueryOptions DEFAULT_RS_OPTIONS
-
ONE_ROW_RESULT_OPTIONS
public static final QueryOptions ONE_ROW_RESULT_OPTIONS
-
LARGE_RESULTSET_OPTIONS
public static final QueryOptions LARGE_RESULTSET_OPTIONS
-
LARGE_RESULTSET_OPTIONS_MYSQL
public static final QueryOptions LARGE_RESULTSET_OPTIONS_MYSQL
-
-
Method Detail
-
getResultSetType
public int getResultSetType()
-
getResultSetConcurrency
public int getResultSetConcurrency()
-
getFetchSize
public int getFetchSize()
-
getMaxRows
public int getMaxRows()
-
setResultSetType
public void setResultSetType(int resultSetType)
-
setResultSetConcurrency
public void setResultSetConcurrency(int resultSetConcurrency)
-
setFetchSize
public void setFetchSize(int fetchSize)
-
setMaxRows
public void setMaxRows(int maxRows)
-
-