Uses of Class
com.clickhouse.client.api.query.QuerySettings
Packages that use QuerySettings
Package
Description
-
Uses of QuerySettings in com.clickhouse.client.api
Methods in com.clickhouse.client.api with parameters of type QuerySettingsModifier and TypeMethodDescriptionClient.query(String sqlQuery, QuerySettings settings) Sends SQL query to server.Sends SQL query to server with parameters.Client.queryRecords(String sqlQuery, QuerySettings settings) Queries data in one of descriptive format and creates a reader out of the response stream. -
Uses of QuerySettings in com.clickhouse.client.api.command
Subclasses of QuerySettings in com.clickhouse.client.api.command -
Uses of QuerySettings in com.clickhouse.client.api.data_formats
Constructors in com.clickhouse.client.api.data_formats with parameters of type QuerySettingsModifierConstructorDescriptionNativeFormatReader(InputStream inputStream, QuerySettings settings) RowBinaryFormatReader(InputStream inputStream, QuerySettings querySettings, TableSchema schema) RowBinaryWithNamesAndTypesFormatReader(InputStream inputStream, QuerySettings querySettings) RowBinaryWithNamesFormatReader(InputStream inputStream, QuerySettings querySettings, TableSchema schema) -
Uses of QuerySettings in com.clickhouse.client.api.data_formats.internal
Constructors in com.clickhouse.client.api.data_formats.internal with parameters of type QuerySettingsModifierConstructorDescriptionprotectedAbstractBinaryFormatReader(InputStream inputStream, QuerySettings querySettings, TableSchema schema) -
Uses of QuerySettings in com.clickhouse.client.api.query
Methods in com.clickhouse.client.api.query that return QuerySettingsModifier and TypeMethodDescriptionQueryResponse.getSettings()QuerySettings.setDatabase(String database) Sets database to be used for a request.QuerySettings.setFormat(com.clickhouse.data.ClickHouseFormat format) Sets output format for a server response.QuerySettings.setMaxExecutionTime(Integer maxExecutionTime) Maximum query execution time in seconds on server.Sets a configuration option.QuerySettings.setQueryId(String queryId) Sets the query id.QuerySettings.setReadBufferSize(Integer size) Read buffer is used for reading data from a server.QuerySettings.setUseServerTimeZone(Boolean useServerTimeZone) QuerySettings.setUseTimeZone(String timeZone) QuerySettings.waitEndOfQuery(Boolean waitEndOfQuery) Requests the server to wait for the and of the query before sending response.Constructors in com.clickhouse.client.api.query with parameters of type QuerySettingsModifierConstructorDescriptionQueryResponse(ClickHouseResponse clickHouseResponse, com.clickhouse.data.ClickHouseFormat format, ClientStatisticsHolder clientStatisticsHolder, QuerySettings settings) Deprecated.QueryResponse(org.apache.hc.core5.http.ClassicHttpResponse response, com.clickhouse.data.ClickHouseFormat format, QuerySettings settings, OperationMetrics operationMetrics) Records(QueryResponse response, QuerySettings finalSettings)