Ruslan Khaliullin

Results 11 comments of Ruslan Khaliullin

Same problem. Steps to reproduce: 1. Open jsfiddle from demo (https://www.amcharts.com/demos-v3/column-with-rotated-series-v3/): http://jsfiddle.net/api/post/library/pure/ 2. Add property mouseWheelScrollEnabled and set to true (https://www.amcharts.com/docs/v3/reference/amserialchart/#mouseWheelScrollEnabled_property) 3. Try mouse wheel and see: ![image](https://user-images.githubusercontent.com/20280287/58366085-cc2ac680-7ed5-11e9-9d8f-9b91e2c89e07.png) Solution: ```...

> https://github.com/ClickHouse/clickhouse-jdbc-bridge/blob/master/src/main/java/com/clickhouse/jdbcbridge/impl/JdbcDataSource.java#L464 > > And from: https://jdbc.postgresql.org/documentation/query/#getting-results-based-on-a-cursor > > ``` > // make sure autocommit is off > conn.setAutoCommit(false); > Statement st = conn.createStatement(); > ``` > > Looks like...

`setAutoCommit(false)` fix and rebuild JDBC bridge helped, thank you @UnamedRus it remains only to understand what bad it can lead to

@zhicwu Hello. There has been no activity in the repo for a very long time. Is it still supported?

@mbtolou hi, how did you solve your problem? I mean error: `System.IO.IOException: The response ended prematurely`. It looks like some kind of floating bug. Could you describe, please?

@mbtolou Thank you for your answer! Yes, I had this problem but I can't reproduce it, if any information appears, I will post it here.

@DarkWanderer yes, I use my own `HttpClient`: `Program.cs` ``` builder.Services.AddHttpClient("DataRefresh", client => client.Timeout = clickHouseConnectionStringBuilder.Timeout) .ConfigurePrimaryHttpMessageHandler(() => new HttpClientHandler { AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate, }); ``` For every query...

Stack trace: ``` Unhandled exception. System.Net.Http.HttpRequestException: An error occurred while sending the request. ---> System.IO.IOException: The response ended prematurely. at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) --- End of inner...

> Do you hold the `connection` reference until you read all of the results, or do you pass the results enumerator away while connection, command or reader object lose visibility?...

There is no support for cancelling: https://github.com/DarkWanderer/ClickHouse.Client/discussions/329 Your way is good, I am using same.