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 QueryOptions
DEFAULT_RS_OPTIONS
static QueryOptions
LARGE_RESULTSET_OPTIONS
static QueryOptions
LARGE_RESULTSET_OPTIONS_MYSQL
static QueryOptions
ONE_ROW_RESULT_OPTIONS
-
Constructor Summary
Constructors Constructor Description QueryOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getFetchSize()
int
getMaxRows()
int
getResultSetConcurrency()
int
getResultSetType()
void
setFetchSize(int fetchSize)
void
setMaxRows(int maxRows)
void
setResultSetConcurrency(int resultSetConcurrency)
void
setResultSetType(int resultSetType)
String
toString()
-
-
-
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)
-
-