IG
Size: a a a
IG
SB
ST
opts
SB
opts
(j/execute! db-spec ["select 1"] {:auto-commit false})
так тоже не проходитIG
db-spec
ST
(j/execute! db-spec ["select 1"] {:auto-commit false})
так тоже не проходитIG
auto-commit
это часть jsbc-спекиSB
auto-commit
это часть jsbc-спекиST
ST
SB
(def db-spec {:dbtype "tarantool" :user "test" :password "test" :host "127.0.0.1" :port 3301 :dbname "universe" :classname "org.tarantool.jdbc.SQLDriver" :auto-commit false})
и execute!
пишет "Execution error (SQLFeatureNotSupportedException) at org.tarantool.jdbc.SQLConnection/setAutoCommit (SQLConnection.java:199).null"IG
SB
SB
IG
IG
:auto-commit?
(со знаком вопроса)SB
ST
(def db-spec {:dbtype "tarantool" :user "test" :password "test" :host "127.0.0.1" :port 3301 :dbname "universe" :classname "org.tarantool.jdbc.SQLDriver" :auto-commit false})
и execute!
пишет "Execution error (SQLFeatureNotSupportedException) at org.tarantool.jdbc.SQLConnection/setAutoCommit (SQLConnection.java:199).null"SB
@Overrideпохоже так
public void setAutoCommit(boolean autoCommit) throws SQLException {
checkNotClosed();
if (!autoCommit) {
throw new SQLFeatureNotSupportedException();
}
}
ST
@Overrideпохоже так
public void setAutoCommit(boolean autoCommit) throws SQLException {
checkNotClosed();
if (!autoCommit) {
throw new SQLFeatureNotSupportedException();
}
}