jaceksan opened a new issue, #1621:
URL: https://github.com/apache/arrow-adbc/issues/1621

   ### What would you like help with?
   
   Connecting to Snowflake with Arrow ADBC from Java.
   ```
   final Map<String, Object> parameters = new HashMap<>();
   parameters.put(AdbcDriver.PARAM_URI.getKey(), url);
   parameters.put(AdbcDriver.PARAM_USERNAME.getKey(), user);
   parameters.put(AdbcDriver.PARAM_PASSWORD.getKey(), dbPassword);
   adb = new JdbcDriver(bufferAllocator).open(parameters);
   ac = adb.connect();
   astmt = ac.createStatement();
   ```
   It connects successfully but then createStatement() fails with the following 
error.
   
https://community.snowflake.com/s/article/JDBC-Error-ResultSet-type-1004-is-not-supported
   
   Is it already supported?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to