📄 jdbccallablestatement.java
字号:
/*
* Copyright 2004-2008 H2 Group. Licensed under the H2 License, Version 1.0
* (http://h2database.com/html/license.html).
* Initial Developer: H2 Group
*/
package org.h2.jdbc;
import java.io.InputStream;
import java.io.Reader;
import java.math.BigDecimal;
import java.net.URL;
import java.sql.Array;
import java.sql.Blob;
import java.sql.CallableStatement;
import java.sql.Clob;
import java.sql.Date;
import java.sql.Ref;
//#ifdef JDK16
/*
import java.sql.NClob;
import java.sql.SQLXML;
import java.sql.RowId;
*/
//#endif
import java.sql.SQLException;
import java.sql.Time;
import java.sql.Timestamp;
import java.util.Calendar;
import java.util.Map;
import org.h2.engine.SessionInterface;
import org.h2.message.Message;
import org.h2.message.TraceObject;
/**
* Represents a callable statement.
*
*/
public class JdbcCallableStatement extends JdbcPreparedStatement implements CallableStatement {
/**
* [Not supported]
*/
public void registerOutParameter(int parameterIndex, int sqlType) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public void registerOutParameter(int parameterIndex, int sqlType, int scale) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public boolean wasNull() throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public String getString(int parameterIndex) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public boolean getBoolean(int parameterIndex) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public byte getByte(int parameterIndex) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public short getShort(int parameterIndex) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public int getInt(int parameterIndex) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public long getLong(int parameterIndex) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public float getFloat(int parameterIndex) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public double getDouble(int parameterIndex) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
* @deprecated
*/
public BigDecimal getBigDecimal(int parameterIndex, int scale) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public byte[] getBytes(int parameterIndex) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public Date getDate(int parameterIndex) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public Time getTime(int parameterIndex) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public Timestamp getTimestamp(int parameterIndex) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public Object getObject(int parameterIndex) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public BigDecimal getBigDecimal(int parameterIndex) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public Object getObject(int i, Map map) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public Ref getRef(int i) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public Blob getBlob(int i) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public Clob getClob(int i) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public Array getArray(int i) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public Date getDate(int parameterIndex, Calendar cal) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public Time getTime(int parameterIndex, Calendar cal) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public Timestamp getTimestamp(int parameterIndex, Calendar cal) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public void registerOutParameter(int paramIndex, int sqlType, String typeName) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*
*/
public URL getURL(String parameterName) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*
*/
public Timestamp getTimestamp(String parameterName, Calendar cal) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public Time getTime(String parameterName, Calendar cal) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public Date getDate(String parameterName, Calendar cal) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public Array getArray(String parameterName) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public Clob getClob(String parameterName) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public Blob getBlob(String parameterName) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public Ref getRef(String parameterName) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public Object getObject(String parameterName, Map map) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public BigDecimal getBigDecimal(String parameterName) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public Object getObject(String parameterName) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public Timestamp getTimestamp(String parameterName) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public Time getTime(String parameterName) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public Date getDate(String parameterName) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public byte[] getBytes(String parameterName) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public double getDouble(String parameterName) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public float getFloat(String parameterName) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public long getLong(String parameterName) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public int getInt(String parameterName) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public short getShort(String parameterName) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public byte getByte(String parameterName) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public boolean getBoolean(String parameterName) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public String getString(String parameterName) throws SQLException {
throw Message.getUnsupportedException();
}
// --- setters --------------------------------------------------
/**
* [Not supported]
*/
public void setNull(String parameterName, int sqlType, String typeName) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public void setTimestamp(String parameterName, Timestamp x, Calendar cal) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public void setTime(String parameterName, Time x, Calendar cal) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public void setDate(String parameterName, Date x, Calendar cal) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public void setCharacterStream(String parameterName, Reader reader, int length) throws SQLException {
throw Message.getUnsupportedException();
}
/**
* [Not supported]
*/
public void setObject(String parameterName, Object x) throws SQLException {
throw Message.getUnsupportedException();
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -