Lines Matching defs:parameterIndex

188  * two parameters (<code>setNull(int parameterIndex, int SqlType)</code>). Nevertheless,
198 * (<code>setNull(int parameterIndex, int sqlType, String typeName)</code>) and also
1545 * <i>parameterIndex</i> is <i>parameterIndex</i> -1.
1547 * @param parameterIndex the ordinal number of the placeholder parameter
1560 public void setNull(int parameterIndex, int sqlType) throws SQLException {
1562 checkParamIndex(parameterIndex);
1572 params.put(Integer.valueOf(parameterIndex - 1), nullVal);
1625 * <i>parameterIndex</i> is <i>parameterIndex</i> -1.
1627 * @param parameterIndex the ordinal number of the placeholder parameter
1639 public void setNull(int parameterIndex, int sqlType, String typeName)
1643 checkParamIndex(parameterIndex);
1654 params.put(Integer.valueOf(parameterIndex - 1), nullVal);
1673 * @param parameterIndex the ordinal number of the placeholder parameter
1682 public void setBoolean(int parameterIndex, boolean x) throws SQLException {
1683 checkParamIndex(parameterIndex);
1689 params.put(Integer.valueOf(parameterIndex - 1), Boolean.valueOf(x));
1707 * @param parameterIndex the ordinal number of the placeholder parameter
1716 public void setByte(int parameterIndex, byte x) throws SQLException {
1717 checkParamIndex(parameterIndex);
1723 params.put(Integer.valueOf(parameterIndex - 1), Byte.valueOf(x));
1741 * @param parameterIndex the ordinal number of the placeholder parameter
1750 public void setShort(int parameterIndex, short x) throws SQLException {
1751 checkParamIndex(parameterIndex);
1757 params.put(Integer.valueOf(parameterIndex - 1), Short.valueOf(x));
1775 * @param parameterIndex the ordinal number of the placeholder parameter
1784 public void setInt(int parameterIndex, int x) throws SQLException {
1785 checkParamIndex(parameterIndex);
1789 params.put(Integer.valueOf(parameterIndex - 1), Integer.valueOf(x));
1807 * @param parameterIndex the ordinal number of the placeholder parameter
1816 public void setLong(int parameterIndex, long x) throws SQLException {
1817 checkParamIndex(parameterIndex);
1821 params.put(Integer.valueOf(parameterIndex - 1), Long.valueOf(x));
1839 * @param parameterIndex the ordinal number of the placeholder parameter
1848 public void setFloat(int parameterIndex, float x) throws SQLException {
1849 checkParamIndex(parameterIndex);
1853 params.put(Integer.valueOf(parameterIndex - 1), Float.valueOf(x));
1871 * @param parameterIndex the ordinal number of the placeholder parameter
1880 public void setDouble(int parameterIndex, double x) throws SQLException {
1881 checkParamIndex(parameterIndex);
1885 params.put(Integer.valueOf(parameterIndex - 1), Double.valueOf(x));
1903 * @param parameterIndex the ordinal number of the placeholder parameter
1912 public void setBigDecimal(int parameterIndex, java.math.BigDecimal x) throws SQLException {
1913 checkParamIndex(parameterIndex);
1917 params.put(Integer.valueOf(parameterIndex - 1), x);
1937 * @param parameterIndex the ordinal number of the placeholder parameter
1946 public void setString(int parameterIndex, String x) throws SQLException {
1947 checkParamIndex(parameterIndex);
1951 params.put(Integer.valueOf(parameterIndex - 1), x);
1971 * @param parameterIndex the ordinal number of the placeholder parameter
1980 public void setBytes(int parameterIndex, byte x[]) throws SQLException {
1981 checkParamIndex(parameterIndex);
1985 params.put(Integer.valueOf(parameterIndex - 1), x);
2006 * placeholder parameter number <i>parameterIndex</i> being the <code>Date</code>
2010 * <i>parameterIndex</i> is <i>parameterIndex</i> -1.
2012 * @param parameterIndex the ordinal number of the placeholder parameter
2021 public void setDate(int parameterIndex, java.sql.Date x) throws SQLException {
2022 checkParamIndex(parameterIndex);
2027 params.put(Integer.valueOf(parameterIndex - 1), x);
2048 * The parameter to be set for parameter placeholder number <i>parameterIndex</i>
2054 * <i>parameterIndex</i> is <i>parameterIndex</i> -1.
2056 * @param parameterIndex the ordinal number of the placeholder parameter
2061 * for placeholder parameter <i>parameterIndex</i>
2066 public void setTime(int parameterIndex, java.sql.Time x) throws SQLException {
2067 checkParamIndex(parameterIndex);
2072 params.put(Integer.valueOf(parameterIndex - 1), x);
2094 * number <i>parameterIndex</i> being the <code>Timestamp</code> object that was
2098 * <i>parameterIndex</i> is <i>parameterIndex</i> -1.
2100 * @param parameterIndex the ordinal number of the placeholder parameter
2109 public void setTimestamp(int parameterIndex, java.sql.Timestamp x) throws SQLException {
2110 checkParamIndex(parameterIndex);
2115 params.put(Integer.valueOf(parameterIndex - 1), x);
2165 * <i>parameterIndex</i> is element number <i>parameterIndex</i> -1.
2167 * @param parameterIndex the ordinal number of the placeholder parameter
2182 public void setAsciiStream(int parameterIndex, java.io.InputStream x, int length) throws SQLException {
2184 checkParamIndex(parameterIndex);
2195 params.put(Integer.valueOf(parameterIndex - 1), asciiStream);
2214 * @param parameterIndex the first parameter is 1, the second is 2, ...
2221 public void setAsciiStream(int parameterIndex, java.io.InputStream x)
2271 * <i>parameterIndex</i> is element number <i>parameterIndex</i> -1.
2273 * @param parameterIndex the ordinal number of the placeholder parameter
2287 public void setBinaryStream(int parameterIndex, java.io.InputStream x, int length) throws SQLException {
2289 checkParamIndex(parameterIndex);
2299 params.put(Integer.valueOf(parameterIndex - 1), binaryStream);
2318 * @param parameterIndex the first parameter is 1, the second is 2, ...
2325 public void setBinaryStream(int parameterIndex, java.io.InputStream x)
2377 * <i>parameterIndex</i> is element number <i>parameterIndex</i> -1.
2379 * @param parameterIndex the ordinal number of the placeholder parameter
2393 public void setUnicodeStream(int parameterIndex, java.io.InputStream x, int length) throws SQLException {
2395 checkParamIndex(parameterIndex);
2404 params.put(Integer.valueOf(parameterIndex - 1), unicodeStream);
2455 * <i>parameterIndex</i> is element number <i>parameterIndex</i> -1.
2457 * @param parameterIndex the ordinal number of the placeholder parameter
2472 public void setCharacterStream(int parameterIndex, Reader reader, int length) throws SQLException {
2474 checkParamIndex(parameterIndex);
2482 params.put(Integer.valueOf(parameterIndex - 1), charStream);
2502 * @param parameterIndex the first parameter is 1, the second is 2, ...
2510 public void setCharacterStream(int parameterIndex,
2567 * <i>parameterIndex</i> is element number <i>parameterIndex</i> -1.
2570 * @param parameterIndex the ordinal number of the placeholder parameter
2588 public void setObject(int parameterIndex, Object x, int targetSqlType, int scale) throws SQLException {
2590 checkParamIndex(parameterIndex);
2599 params.put(Integer.valueOf(parameterIndex - 1), obj);
2605 * This method is like <code>setObject(int parameterIndex, Object x, int
2635 * <i>parameterIndex</i> is element number <i>parameterIndex</i> -1.
2637 * @param parameterIndex the ordinal number of the placeholder parameter
2651 public void setObject(int parameterIndex, Object x, int targetSqlType) throws SQLException {
2653 checkParamIndex(parameterIndex);
2661 params.put(Integer.valueOf(parameterIndex - 1), obj);
2708 * <code>parameterIndex</code>.
2711 * <i>parameterIndex</i> is element number <i>parameterIndex</i> -1.
2713 * @param parameterIndex the ordinal number of the placeholder parameter
2724 public void setObject(int parameterIndex, Object x) throws SQLException {
2725 checkParamIndex(parameterIndex);
2729 params.put(Integer.valueOf(parameterIndex - 1), x);
2753 * <code>parameterIndex</code>.
2756 * <i>parameterIndex</i> is element number <i>parameterIndex</i> -1.
2758 * @param parameterIndex the ordinal number of the placeholder parameter
2771 public void setRef (int parameterIndex, Ref ref) throws SQLException {
2772 checkParamIndex(parameterIndex);
2776 params.put(Integer.valueOf(parameterIndex - 1), new SerialRef(ref));
2799 * <code>parameterIndex</code>.
2802 * <i>parameterIndex</i> is element number <i>parameterIndex</i> -1.
2804 * @param parameterIndex the ordinal number of the placeholder parameter
2815 public void setBlob (int parameterIndex, Blob x) throws SQLException {
2816 checkParamIndex(parameterIndex);
2820 params.put(Integer.valueOf(parameterIndex - 1), new SerialBlob(x));
2844 * <code>parameterIndex</code>.
2847 * <i>parameterIndex</i> is element number <i>parameterIndex</i> -1.
2849 * @param parameterIndex the ordinal number of the placeholder parameter
2860 public void setClob (int parameterIndex, Clob x) throws SQLException {
2861 checkParamIndex(parameterIndex);
2865 params.put(Integer.valueOf(parameterIndex - 1), new SerialClob(x));
2889 * <code>parameterIndex</code>.
2892 * <i>parameterIndex</i> is element number <i>parameterIndex</i> -1.
2894 * @param parameterIndex the ordinal number of the placeholder parameter
2908 public void setArray (int parameterIndex, Array array) throws SQLException {
2909 checkParamIndex(parameterIndex);
2913 params.put(Integer.valueOf(parameterIndex - 1), new SerialArray(array));
2954 * <i>parameterIndex</i> is <i>parameterIndex</i> -1.
2956 * @param parameterIndex the ordinal number of the placeholder parameter
2968 public void setDate(int parameterIndex, java.sql.Date x, Calendar cal) throws SQLException {
2970 checkParamIndex(parameterIndex);
2978 params.put(Integer.valueOf(parameterIndex - 1), date);
3021 * <i>parameterIndex</i> is <i>parameterIndex</i> -1.
3023 * @param parameterIndex the ordinal number of the placeholder parameter
3034 public void setTime(int parameterIndex, java.sql.Time x, Calendar cal) throws SQLException {
3036 checkParamIndex(parameterIndex);
3044 params.put(Integer.valueOf(parameterIndex - 1), time);
3087 * <i>parameterIndex</i> is <i>parameterIndex</i> -1.
3089 * @param parameterIndex the ordinal number of the placeholder parameter
3100 public void setTimestamp(int parameterIndex, java.sql.Timestamp x, Calendar cal) throws SQLException {
3102 checkParamIndex(parameterIndex);
3110 params.put(Integer.valueOf(parameterIndex - 1), timestamp);
3148 * <i>parameterIndex</i>. If the setter method takes only the parameter index
3619 * @param parameterIndex of the first parameter is 1, the second is 2, ...
3628 public void setNCharacterStream(int parameterIndex, Reader value) throws SQLException{
3751 * @param parameterIndex index of the first parameter is 1,
3758 * if parameterIndex does not correspond
3766 public void setBlob(int parameterIndex, InputStream inputStream, long length)
3783 * @param parameterIndex index of the first parameter is 1,
3789 * if parameterIndex does not correspond
3795 public void setBlob(int parameterIndex, InputStream inputStream)
3817 * @throws SQLException if parameterIndex does not correspond
3885 * @param parameterIndex index of the first parameter is 1, the second is 2, ...
3889 * a closed <code>PreparedStatement</code>, if parameterIndex does not correspond to a parameter
3895 public void setClob(int parameterIndex, Reader reader, long length)
3912 * @param parameterIndex index of the first parameter is 1, the second is 2, ...
3915 * a closed <code>PreparedStatement</code>or if parameterIndex does not correspond to a parameter
3921 public void setClob(int parameterIndex, Reader reader)
3939 * @throws SQLException if parameterIndex does not correspond to a parameter
4110 * @param parameterIndex index of the first parameter is 1, the second is 2, ...
4124 public void setSQLXML(int parameterIndex, SQLXML xmlObject) throws SQLException {
4154 * @param parameterIndex the first parameter is 1, the second is 2, ...
4162 public void setRowId(int parameterIndex, RowId x) throws SQLException {
4190 * @param parameterIndex of the first parameter is 1, the second is 2, ...
4199 public void setNString(int parameterIndex, String value) throws SQLException {
4225 * @param parameterIndex of the first parameter is 1, the second is 2, ...
4235 public void setNCharacterStream(int parameterIndex, Reader value, long length)
4317 * @throws SQLException if parameterIndex does not correspond to a parameter
4366 * @param parameterIndex index of the first parameter is 1, the second is 2, ...
4369 * @throws SQLException if parameterIndex does not correspond to a parameter
4380 public void setNClob(int parameterIndex, Reader reader, long length)
4388 * @param parameterIndex of the first parameter is 1, the second is 2, ...
4397 public void setNClob(int parameterIndex, NClob value) throws SQLException {
4412 * @param parameterIndex index of the first parameter is 1, the second is 2, ...
4414 * @throws SQLException if parameterIndex does not correspond to a parameter
4424 public void setNClob(int parameterIndex, Reader reader)throws SQLException {
4433 * @param parameterIndex the first parameter is 1, the second is 2, ...
4439 public void setURL(int parameterIndex, java.net.URL x) throws SQLException {