Skip to content

Tag: java

Clickhouse jdbc driver connection issue

We are trying to connect to a clickhouse server using jdbc drivers. Our code snippet is in scala and would not be much different in java We get the following error : We went through a few other pages mentioning the same error and in keeping with the advice there, we used the latest version of the driver (0.3.…

Error running a Java 8 batch with a jdk17

I’m trying to run a java 8 batch with a jdk17, the project is built with a jre1.8.0_192 and I put the following options in the VM: –add-modules=ALL-SYSTEM –add-opens=java.base/java.lang=ALL-UNNAMED –add-opens=java.base/java.math=ALL-UNNAMED –add-opens=java.base/java.net=ALL-UNNAM…

Loading of TableRows and TextViews into TableLayout after onCreate

I would like to load TableRows with TextViews into the table outside of oncreate. It should look like that. The problem is that I want to do the whole thing outside of the oncreate function. The rows and text views should only be added at runtime. If I do it outside then the added elements are rendered but no…