📄 embedcallablestatement20.java
字号:
* converts this to an SQL BIT value when it sends it to the database. * * @param parameterName - the name of the parameter * @param x - the parameter value * @exception SQLException Feature not implemented for now. */ public void setBoolean(String parameterName, boolean x) throws SQLException { throw Util.notImplemented(); } /** * JDBC 3.0 * * Retrieves the value of a JDBC BIT parameter as a boolean in the Java * programming language. * * @param parameterName - the name of the parameter * @return the parameter value. If the value is SQL NULL, the result is false. * @exception SQLException Feature not implemented for now. */ public boolean getBoolean(String parameterName) throws SQLException { throw Util.notImplemented(); } /** * JDBC 3.0 * * Sets the designated parameter to the given Java byte value. The driver * converts this to an SQL TINYINT value when it sends it to the database. * * @param parameterName - the name of the parameter * @param x - the parameter value * @exception SQLException Feature not implemented for now. */ public void setByte(String parameterName, byte x) throws SQLException { throw Util.notImplemented(); } /** * JDBC 3.0 * * Retrieves the value of a JDBC TINYINT parameter as a byte in the Java * programming language. * * @param parameterName - the name of the parameter * @return the parameter value. If the value is SQL NULL, the result is 0. * @exception SQLException Feature not implemented for now. */ public byte getByte(String parameterName) throws SQLException { throw Util.notImplemented(); } /** * JDBC 3.0 * * Sets the designated parameter to the given Java short value. The driver * converts this to an SQL SMALLINT value when it sends it to the database. * * @param parameterName - the name of the parameter * @param x - the parameter value * @exception SQLException Feature not implemented for now. */ public void setShort(String parameterName, short x) throws SQLException { throw Util.notImplemented(); } /** * JDBC 3.0 * * Retrieves the value of a JDBC SMALLINT parameter as a short in the Java * programming language. * * @param parameterName - the name of the parameter * @return the parameter value. If the value is SQL NULL, the result is 0. * @exception SQLException Feature not implemented for now. */ public short getShort(String parameterName) throws SQLException { throw Util.notImplemented(); } /** * JDBC 3.0 * * Sets the designated parameter to the given Java int value. The driver * converts this to an SQL INTEGER value when it sends it to the database. * * @param parameterName - the name of the parameter * @param x - the parameter value * @exception SQLException Feature not implemented for now. */ public void setInt(String parameterName, int x) throws SQLException { throw Util.notImplemented(); } /** * JDBC 3.0 * * Retrieves the value of a JDBC INTEGER parameter as a int in the Java * programming language. * * @param parameterName - the name of the parameter * @return the parameter value. If the value is SQL NULL, the result is 0. * @exception SQLException Feature not implemented for now. */ public int getInt(String parameterName) throws SQLException { throw Util.notImplemented(); } /** * JDBC 3.0 * * Sets the designated parameter to the given Java long value. The driver * converts this to an SQL BIGINT value when it sends it to the database. * * @param parameterName - the name of the parameter * @param x - the parameter value * @exception SQLException Feature not implemented for now. */ public void setLong(String parameterName, long x) throws SQLException { throw Util.notImplemented(); } /** * JDBC 3.0 * * Retrieves the value of a JDBC BIGINT parameter as a long in the Java * programming language. * * @param parameterName - the name of the parameter * @return the parameter value. If the value is SQL NULL, the result is 0. * @exception SQLException Feature not implemented for now. */ public long getLong(String parameterName) throws SQLException { throw Util.notImplemented(); } /** * JDBC 3.0 * * Sets the designated parameter to the given Java float value. The driver * converts this to an SQL FLOAT value when it sends it to the database. * * @param parameterName - the name of the parameter * @param x - the parameter value * @exception SQLException Feature not implemented for now. */ public void setFloat(String parameterName, float x) throws SQLException { throw Util.notImplemented(); } /** * JDBC 3.0 * * Retrieves the value of a JDBC FLOAT parameter as a float in the Java * programming language. * * @param parameterName - the name of the parameter * @return the parameter value. If the value is SQL NULL, the result is 0. * @exception SQLException Feature not implemented for now. */ public float getFloat(String parameterName) throws SQLException { throw Util.notImplemented(); } /** * JDBC 3.0 * * Sets the designated parameter to the given Java double value. The driver * converts this to an SQL DOUBLE value when it sends it to the database. * * @param parameterName - the name of the parameter * @param x - the parameter value * @exception SQLException Feature not implemented for now. */ public void setDouble(String parameterName, double x) throws SQLException { throw Util.notImplemented(); } /** * JDBC 3.0 * * Retrieves the value of a JDBC DOUBLE parameter as a double in the Java * programming language. * * @param parameterName - the name of the parameter * @return the parameter value. If the value is SQL NULL, the result is 0. * @exception SQLException Feature not implemented for now. */ public double getDouble(String parameterName) throws SQLException { throw Util.notImplemented(); } /** * JDBC 3.0 * * Sets the designated parameter to the given java.math.BigDecimal value. The driver * converts this to an SQL NUMERIC value when it sends it to the database. * * @param parameterName - the name of the parameter * @param x - the parameter value * @exception SQLException Feature not implemented for now. */ public void setBigDecimal(String parameterName, BigDecimal x) throws SQLException { throw Util.notImplemented(); } /** * JDBC 3.0 * * Retrieves the value of a JDBC NUMERIC parameter as a java.math.BigDecimal * object with as many digits to the right of the decimal point as the value contains * * @param parameterName - the name of the parameter * @return the parameter value. If the value is SQL NULL, the result is 0. * @exception SQLException Feature not implemented for now. */ public BigDecimal getBigDecimal(String parameterName) throws SQLException { throw Util.notImplemented(); } /** * JDBC 3.0 * * Sets the designated parameter to the given Java String value. The driver * converts this to an SQL VARCHAR OR LONGVARCHAR value (depending on the * argument's size relative the driver's limits on VARCHAR values) when it * sends it to the database. * * @param parameterName - the name of the parameter * @param x - the parameter value * @exception SQLException Feature not implemented for now. */ public void setString(String parameterName, String x) throws SQLException { throw Util.notImplemented(); } /** * JDBC 3.0 * * Retrieves the value of a JDBC CHAR, VARCHAR, or LONGVARCHAR parameter as * a String in the Java programming language. * * @param parameterName - the name of the parameter * @return the parameter value. If the value is SQL NULL, the result is null. * @exception SQLException Feature not implemented for now. */ public String getString(String parameterName) throws SQLException { throw Util.notImplemented(); } /** * JDBC 3.0 * * Sets the designated parameter to the given Java array of bytes. The driver * converts this to an SQL VARBINARY OR LONGVARBINARY (depending on the argument's * size relative to the driver's limits on VARBINARY values)when it sends it to * the database. * * @param parameterName - the name of the parameter * @param x - the parameter value * @exception SQLException Feature not implemented for now. */ public void setBytes(String parameterName, byte[] x) throws SQLException { throw Util.notImplemented(); } /** * JDBC 3.0 * * Retrieves the value of a JDBC BINARY or VARBINARY parameter as an array * of byte values in the Java programming language. * * @param parameterName - the name of the parameter * @return the parameter value. If the value is SQL NULL, the result is null. * @exception SQLException Feature not implemented for now. */ public byte[] getBytes(String parameterName) throws SQLException { throw Util.notImplemented(); } /** * JDBC 3.0 * * Sets the designated parameter to the given java.sql.Date value. The driver * converts this to an SQL DATE value when it sends it to the database. * * @param parameterName - the name of the parameter * @param x - the parameter value * @exception SQLException Feature not implemented for now. */ public void setDate(String parameterName, Date x) throws SQLException { throw Util.notImplemented(); } /** * JDBC 3.0 * * Sets the designated parameter to the given java.sql.Date value, using the given * Calendar object. * * @param parameterName - the name of the parameter * @param x - the parameter value * @param cal - the Calendar object the driver will use to construct the date * @exception SQLException Feature not implemented for now. */ public void setDate(String parameterName, Date x, Calendar cal) throws SQLException { throw Util.notImplemented(); } /** * JDBC 3.0 * * Retrieves the value of a JDBC DATE parameter as ajava.sql.Date object * * @param parameterName - the name of the parameter * @return the parameter value. If the value is SQL NULL, the result is null. * @exception SQLException Feature not implemented for now. */ public Date getDate(String parameterName)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -