ksql-jdbc-driver icon indicating copy to clipboard operation
ksql-jdbc-driver copied to clipboard

JDBC driver for Apache Kafka

Results 16 ksql-jdbc-driver issues
Sort by recently updated
recently updated
newest added

Proposal to add two new GitHub actions for the project: - One CI action to run tests on PRs etc - One to run tests, create a release, and attach...

![image](https://user-images.githubusercontent.com/28554109/76182227-07aa3d80-6229-11ea-98bd-d4a61b375f41.png) Hi there, we meet a problem about accessing to the Ksql. We use docker compose to launch the kafka. So there is no username and password. Does it affect?...

Hello, I am using Groovy, which has nice groovy.sql.Sql. I would like to use it with ksql and therefore I have installed your jdbc... This is my simple code: import...

I've continue try (https://github.com/mmolimar/ksql-jdbc-driver/issues/29) using that driver and on query: ``` CREATE TABLE proposals_table (id STRING PRIMARY KEY) WITH (kafka_topic='datahub.epm_staf.qa20.v1.m_proposals', value_format='AVRO'); ``` got error: ```SQL Error: Error parsing query 'CREATE...

Is this due to the java version? `[error] sbt.librarymanagement.ResolveException: Error downloading org.openjfx:javafx.base:11.0.0-SNAPSHOT [error] Not found [error] Not found [error] not found: /Users/joel/.ivy2/local/org.openjfx/javafx.base/11.0.0-SNAPSHOT/ivys/ivy.xml [error] not found: https://repo1.maven.org/maven2/org/openjfx/javafx.base/11.0.0-SNAPSHOT/javafx.base-11.0.0-SNAPSHOT.pom [error] not found: https://packages.confluent.io/maven/org/openjfx/javafx.base/11.0.0-SNAPSHOT/javafx.base-11.0.0-SNAPSHOT.pom...

Hello. I've trying use that driver with [DBeaver](https://dbeaver.io/). At very simple operations it works. But for example on the try discover tables list it gives me the exception: ``` 2020-11-25...

I'm very new to building with SBT, so please be patient. 1. [error] [launcher] download failed: org.scala-lang.modules#scala-xml_2.12;1.2.0!scala-xml_2.12.jar(bundle) I fixed error #1 by finding the file and placing it in the...

![confluent](https://user-images.githubusercontent.com/30949524/84157022-d3dcef00-aa87-11ea-94fc-2c40be85066b.png) I am trying to connect to ksqldb public class MainClass { public static void main(String[] args) { try { Class.forName("com.github.mmolimar.ksql.jdbc.KsqlDriver"); KsqlDriver driver=new KsqlDriver(); String url="jdbc:ksql://localhost:8089"; KsqlConnection con=driver.buildConnection(KsqlDriver.parseUrl(url), null); Statement...

Hello, first of all congratulations for the work done, i have had the opportunity to try your JDBC driver for a long time and i wanted to know more about...

Hi, I am developing a simple JDBC program to use this as JDBC driver and I am facing below issue: I am able connect to ksqlDB when I am loading...