-
Notifications
You must be signed in to change notification settings - Fork 556
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is the driver fully jdbc compliant? #849
Comments
The error message is confusing and I really need to make it clear. Anyway, it meant no parameter found in the query. Can you remove As to your question, the driver is not fully JDBC compliant although we tried to make it as close as possible. That's why there's fake transaction even though ClickHouse does not support that. |
Feel free to reopen if the issue remains. |
Can you please update me if this issue is resolved? We have an application that uses springboot + mysql jdbc. I have been trying to migrate to clickhouse in a labor saving manner. However, I cannot find if the clickhouse-jdbc is compatible with rowMapper (org.springframework.jdbc.core.RowMapper;) and NamedParameterJdbcTemplate can I use clickhouse jdbc? |
Hi @pkoosha, did you run into specific issue using the JDBC driver? |
@zhicwu I am testing something with the NamedParameterJdbcTemplate and it seems like it creates a prepared statement which is not supported through the mysql interface. Can you please confirm if NamedParameterJdbcTemplate is supported? |
I am trying to use
NamedParameterJdbcTemplate
and the driver is not interpolating the query arguments into the query string. Here is a StackOverflow describing what is going on.https://stackoverflow.com/questions/71314115/why-are-namedjdbctemplate-not-working-with-clickhouse-jdbc?noredirect=1#comment126068476_71314115
What am I getting wrong?
The text was updated successfully, but these errors were encountered: