Radhe Kishan Soni

Results 5 comments of Radhe Kishan Soni

Tried with different JDBC Driver - "net.snowflake" % "snowflake-jdbc" % "3.13.22", Same result, it failed.

I changed it to non-shared connection, but it still gives me same error - ```java package com.agilone.runtime.snowflake.jdbc; import com.agilone.runtime.snowflake.SnowflakeExecutorException; import lombok.extern.slf4j.Slf4j; import org.apache.commons.dbutils.QueryRunner; import java.sql.Connection; import java.sql.SQLException; import java.util.ArrayList; import...

I was trying to use key-pair as described in section [private-key-file-name-and-password-as-connection-properties](https://docs.snowflake.com/en/developer-guide/jdbc/jdbc-configure#private-key-file-name-and-password-as-connection-properties). But it gives me `net.snowflake.client.jdbc.SnowflakeSQLLoggedException: Missing password.` error. Driver Version 3.14.4 I am setting ```python { private_key_file=/Users/radhe.soni/work/CDP-Platform/key-pair/RSONI_without.p8, private_key_file_pwd=yes, application=DBeaver_DBeaver,...

https://docs.spring.io/spring-shell/docs/current-SNAPSHOT/reference/htmlsingle/#_customizing_arguments_conversion Doesn't this fits your requirement? ```java @ShellComponent class ConversionCommands { @ShellMethod("Shows conversion using Spring converter") public String conversionExample(DomainObject object) { return object.getClass(); } } class DomainObject { private final...