150151152153154155156
public String nativeSQL(String sql) throws SQLException { throw new NotSupportException(""); } public CallableStatement prepareCall(String sql) throws SQLException { throw new NotSupportException(""); }
154155156157158159160
public CallableStatement prepareCall(String sql) throws SQLException { throw new NotSupportException(""); } public CallableStatement prepareCall(String sql, int resultSetType, int resultSetConcurrency) throws SQLException { throw new NotSupportException(""); }
159160161162163164165
throw new NotSupportException(""); } public CallableStatement prepareCall(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException { throw new NotSupportException(""); }
202203204205206207208
return new MockPreparedStatement("prepareStatement#string_int_int_int", this.mockDataSource, sql); } public void releaseSavepoint(Savepoint savepoint) throws SQLException { mockDataSource.checkState(); throw new NotSupportException(""); }
231232233234235236237
null, new Object[]{ autoCommit })); this.autoCommit = autoCommit; } public void setCatalog(String catalog) throws SQLException { throw new NotSupportException(""); }
235236237238239240241
public void setCatalog(String catalog) throws SQLException { throw new NotSupportException(""); } public void setHoldability(int holdability) throws SQLException { throw new NotSupportException(""); }
244245246247248249250
mockDataSource.checkState(); //TODO: } public Savepoint setSavepoint() throws SQLException { throw new NotSupportException(""); }
248249250251252253254
public Savepoint setSavepoint() throws SQLException { throw new NotSupportException(""); } public Savepoint setSavepoint(String name) throws SQLException { throw new NotSupportException(""); }
257258259260261262263
mockDataSource.checkState(); this.transactionIsolation = level; } public void setTypeMap(Map<String, Class<?>> map) throws SQLException { throw new NotSupportException(""); }
48495051525354
this.sqls.add(sql); } public void cancel() throws SQLException { mds.checkState(); throw new NotSupportException(""); }