Open
Description
What would you like help with?
From Rust
, when calling Connection::commit()
I get:
Error { message: "[Snowflake] Cannot commit when autocommit is enabled", status: InvalidState, vendor_code: -2147483648, sqlstate: [0, 0, 0, 0, 0], details: Some([]) }
And when I try to disable auto commit [1], I get:
Error { message: "[Snowflake] Unknown connection option 'adbc.connection.autocommit'", status: NotImplemented, vendor_code: -2147483648, sqlstate: [0, 0, 0, 0, 0], details: Some([]) }
If the driver doesn't support auto-commit, can it understand that auto-commit is disabled and let Connection::commit()
calls work?
[1]
conn.set_option(OptionConnection::AutoCommit, OptionValue::Int(0))?;
Activity