sql

All things SQL and JDBC...
seancorfield 2020-12-24T17:22:47.004800Z

@slack.jcpsantiago Snowflake DB is not officially supported but I know some folks are using it -- there was an issue raised about it's timestamp support https://github.com/seancorfield/next-jdbc/issues/97

seancorfield 2020-12-24T17:24:26.006400Z

You should be able to use the {:dbtype "snowflake" :dbname "..." :classname TheSnowflakeDriverClass ...} format (`:dbtype` may need to be something different -- what Snowflake's JDBC driver recognizes as the prefix in a JDBC URL).

seancorfield 2020-12-24T17:25:31.006700Z

Yeah, snowflake should work. https://docs.snowflake.com/en/user-guide/jdbc-configure.html#jdbc-driver-connection-string

seancorfield 2020-12-24T17:26:27.007Z

:classname "net.snowflake.client.jdbc.SnowflakeDriver" is the other part you need.