ConnectionOptions constructor
const
ConnectionOptions({
- Duration? connectionTimeout,
- Duration? loginTimeout,
- Duration? queryTimeout,
- int? maxResultBufferBytes,
- int? initialResultBufferBytes,
- int? streamChunkSizeBytes,
- int? blockFetchBatchSize,
- int? sqlPointerCacheMaxSize,
- bool autoReconnectOnConnectionLost = false,
- int? maxReconnectAttempts,
- Duration? reconnectBackoff,
- Duration? slowQueryThreshold,
- bool lazyStrings = false,
Implementation
const ConnectionOptions({
this.connectionTimeout,
this.loginTimeout,
this.queryTimeout,
this.maxResultBufferBytes,
this.initialResultBufferBytes,
this.streamChunkSizeBytes,
this.blockFetchBatchSize,
this.sqlPointerCacheMaxSize,
this.autoReconnectOnConnectionLost = false,
this.maxReconnectAttempts,
this.reconnectBackoff,
this.slowQueryThreshold,
this.lazyStrings = false,
});