mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-04 18:18:03 +00:00
Throw exceptions on unsupported methods
This commit is contained in:
parent
1f3ddaeec6
commit
4e067b2997
1 changed files with 4 additions and 11 deletions
|
@ -236,31 +236,24 @@ public class JDBC4Connection extends LimboConnection {
|
|||
}
|
||||
|
||||
@Override
|
||||
@SkipNullableCheck
|
||||
public Clob createClob() throws SQLException {
|
||||
// TODO
|
||||
return null;
|
||||
throw new SQLFeatureNotSupportedException("createClob not supported");
|
||||
}
|
||||
|
||||
@Override
|
||||
@SkipNullableCheck
|
||||
public Blob createBlob() throws SQLException {
|
||||
// TODO
|
||||
return null;
|
||||
throw new SQLFeatureNotSupportedException("createBlob not supported");
|
||||
}
|
||||
|
||||
@Override
|
||||
@SkipNullableCheck
|
||||
public NClob createNClob() throws SQLException {
|
||||
// TODO
|
||||
return null;
|
||||
throw new SQLFeatureNotSupportedException("createNClob not supported");
|
||||
}
|
||||
|
||||
@Override
|
||||
@SkipNullableCheck
|
||||
public SQLXML createSQLXML() throws SQLException {
|
||||
// TODO
|
||||
return null;
|
||||
throw new SQLFeatureNotSupportedException("createSQLXML not supported");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue