apm-sniffer/apm-sdk-plugin/clickhouse-0.3.2.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/jdbc/clickhouse/v32/SWClickHousePreparedStatement.java [140:579]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public ResultSet executeQuery(String sql) throws SQLException {
        return PreparedStatementTracing.execute(realStatement, connectInfo, "executeQuery", sql,
                new PreparedStatementTracing.Executable<ResultSet>() {
                    @Override
                    public ResultSet exe(PreparedStatement realStatement, String sql) throws SQLException {
                        return realStatement.executeQuery(sql);
                    }
                }, statementEnhanceInfos);
    }

    @Override
    public int executeUpdate(String sql) throws SQLException {
        return PreparedStatementTracing.execute(realStatement, connectInfo, "executeUpdate", sql,
                new PreparedStatementTracing.Executable<Integer>() {
                    @Override
                    public Integer exe(PreparedStatement realStatement, String sql) throws SQLException {
                        return realStatement.executeUpdate(sql);
                    }
                }, statementEnhanceInfos);
    }

    @Override
    public void close() throws SQLException {
        realStatement.close();
    }

    @Override
    public int getMaxFieldSize() throws SQLException {
        return realStatement.getMaxFieldSize();
    }

    @Override
    public void setMaxFieldSize(int max) throws SQLException {
        realStatement.setMaxFieldSize(max);
    }

    @Override
    public int getMaxRows() throws SQLException {
        return realStatement.getMaxRows();
    }

    @Override
    public void setMaxRows(int max) throws SQLException {
        realStatement.setMaxRows(max);
    }

    @Override
    public void setEscapeProcessing(boolean enable) throws SQLException {
        realStatement.setEscapeProcessing(enable);
    }

    @Override
    public int getQueryTimeout() throws SQLException {
        return realStatement.getQueryTimeout();
    }

    @Override
    public void setQueryTimeout(int seconds) throws SQLException {
        realStatement.setQueryTimeout(seconds);
    }

    @Override
    public void cancel() throws SQLException {
        realStatement.cancel();
    }

    @Override
    public SQLWarning getWarnings() throws SQLException {
        return realStatement.getWarnings();
    }

    @Override
    public void clearWarnings() throws SQLException {
        realStatement.clearWarnings();
    }

    @Override
    public void setCursorName(String name) throws SQLException {
        realStatement.setCursorName(name);
    }

    @Override
    public boolean execute(String sql) throws SQLException {
        return PreparedStatementTracing.execute(realStatement, connectInfo, "execute", sql,
                new PreparedStatementTracing.Executable<Boolean>() {
                    @Override
                    public Boolean exe(PreparedStatement realStatement, String sql) throws SQLException {
                        return realStatement.execute(sql);
                    }
                }, statementEnhanceInfos);
    }

    @Override
    public ResultSet getResultSet() throws SQLException {
        return realStatement.getResultSet();
    }

    @Override
    public int getUpdateCount() throws SQLException {
        return realStatement.getUpdateCount();
    }

    @Override
    public boolean getMoreResults() throws SQLException {
        return realStatement.getMoreResults();
    }

    @Override
    public void setFetchDirection(int direction) throws SQLException {
        realStatement.setFetchDirection(direction);
    }

    @Override
    public int getFetchDirection() throws SQLException {
        return realStatement.getFetchDirection();
    }

    @Override
    public void setFetchSize(int rows) throws SQLException {
        realStatement.setFetchSize(rows);
    }

    @Override
    public int getFetchSize() throws SQLException {
        return realStatement.getFetchSize();
    }

    @Override
    public int getResultSetConcurrency() throws SQLException {
        return realStatement.getResultSetConcurrency();
    }

    @Override
    public int getResultSetType() throws SQLException {
        return realStatement.getResultSetType();
    }

    @Override
    public void addBatch(String sql) throws SQLException {
        realStatement.addBatch(sql);
    }

    @Override
    public void clearBatch() throws SQLException {
        realStatement.clearBatch();
    }

    @Override
    public int[] executeBatch() throws SQLException {
        return PreparedStatementTracing.execute(realStatement, connectInfo, "executeBatch", "",
                new PreparedStatementTracing.Executable<int[]>() {
                    @Override
                    public int[] exe(PreparedStatement realStatement, String sql) throws SQLException {
                        return realStatement.executeBatch();
                    }
                }, statementEnhanceInfos);
    }

    @Override
    public Connection getConnection() throws SQLException {
        return realConnection;
    }

    @Override
    public boolean getMoreResults(int current) throws SQLException {
        return realStatement.getMoreResults(current);
    }

    @Override
    public ResultSet getGeneratedKeys() throws SQLException {
        return realStatement.getGeneratedKeys();
    }

    @Override
    public int executeUpdate(String sql, final int autoGeneratedKeys) throws SQLException {
        return PreparedStatementTracing.execute(realStatement, connectInfo, "executeUpdate", sql,
                new PreparedStatementTracing.Executable<Integer>() {
                    @Override
                    public Integer exe(PreparedStatement realStatement, String sql) throws SQLException {
                        return realStatement.executeUpdate(sql, autoGeneratedKeys);
                    }
                }, statementEnhanceInfos);
    }

    @Override
    public int executeUpdate(String sql, final int[] columnIndexes) throws SQLException {
        return PreparedStatementTracing.execute(realStatement, connectInfo, "executeUpdate", sql,
                new PreparedStatementTracing.Executable<Integer>() {
                    @Override
                    public Integer exe(PreparedStatement realStatement, String sql) throws SQLException {
                        return realStatement.executeUpdate(sql, columnIndexes);
                    }
                }, statementEnhanceInfos);
    }

    @Override
    public int executeUpdate(String sql, final String[] columnNames) throws SQLException {
        return PreparedStatementTracing.execute(realStatement, connectInfo, "executeUpdate", sql,
                new PreparedStatementTracing.Executable<Integer>() {
                    @Override
                    public Integer exe(PreparedStatement realStatement, String sql) throws SQLException {
                        return realStatement.executeUpdate(sql, columnNames);
                    }
                }, statementEnhanceInfos);
    }

    @Override
    public boolean execute(String sql, final int autoGeneratedKeys) throws SQLException {
        return PreparedStatementTracing.execute(realStatement, connectInfo, "execute", sql,
                new PreparedStatementTracing.Executable<Boolean>() {
                    @Override
                    public Boolean exe(PreparedStatement realStatement, String sql) throws SQLException {
                        return realStatement.execute(sql, autoGeneratedKeys);
                    }
                }, statementEnhanceInfos);
    }

    @Override
    public boolean execute(String sql, final int[] columnIndexes) throws SQLException {
        return PreparedStatementTracing.execute(realStatement, connectInfo, "execute", sql,
                new PreparedStatementTracing.Executable<Boolean>() {
                    @Override
                    public Boolean exe(PreparedStatement realStatement, String sql) throws SQLException {
                        return realStatement.execute(sql, columnIndexes);
                    }
                }, statementEnhanceInfos);
    }

    @Override
    public boolean execute(String sql, final String[] columnNames) throws SQLException {
        return PreparedStatementTracing.execute(realStatement, connectInfo, "execute", sql,
                new PreparedStatementTracing.Executable<Boolean>() {
                    @Override
                    public Boolean exe(PreparedStatement realStatement, String sql) throws SQLException {
                        return realStatement.execute(sql, columnNames);
                    }
                }, statementEnhanceInfos);
    }

    @Override
    public int getResultSetHoldability() throws SQLException {
        return realStatement.getResultSetHoldability();
    }

    @Override
    public boolean isClosed() throws SQLException {
        return realStatement.isClosed();
    }

    @Override
    public void setPoolable(boolean poolable) throws SQLException {
        realStatement.setPoolable(poolable);
    }

    @Override
    public boolean isPoolable() throws SQLException {
        return realStatement.isPoolable();
    }

    @Override
    public void closeOnCompletion() throws SQLException {
        realStatement.closeOnCompletion();
    }

    @Override
    public boolean isCloseOnCompletion() throws SQLException {
        return realStatement.isCloseOnCompletion();
    }

    @Override
    public <T> T unwrap(Class<T> iface) throws SQLException {
        return realStatement.unwrap(iface);
    }

    @Override
    public boolean isWrapperFor(Class<?> iface) throws SQLException {
        return realStatement.isWrapperFor(iface);
    }

    @Override
    public ResultSet executeQuery() throws SQLException {
        return PreparedStatementTracing.execute(realStatement, connectInfo, "executeQuery", sql,
                new PreparedStatementTracing.Executable<ResultSet>() {
                    @Override
                    public ResultSet exe(PreparedStatement realStatement, String sql) throws SQLException {
                        return realStatement.executeQuery();
                    }
                }, statementEnhanceInfos);
    }

    @Override
    public int executeUpdate() throws SQLException {
        return PreparedStatementTracing.execute(realStatement, connectInfo, "executeUpdate", sql,
                new PreparedStatementTracing.Executable<Integer>() {
                    @Override
                    public Integer exe(PreparedStatement realStatement, String sql) throws SQLException {
                        return realStatement.executeUpdate();
                    }
                }, statementEnhanceInfos);
    }

    @Override
    public void setNull(int parameterIndex, int sqlType) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, "NULL");
        realStatement.setNull(parameterIndex, sqlType);
    }

    @Override
    public void setBoolean(int parameterIndex, boolean x) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, x);
        realStatement.setBoolean(parameterIndex, x);
    }

    @Override
    public void setByte(int parameterIndex, byte x) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, SQL_PARAMETER_PLACEHOLDER);
        realStatement.setByte(parameterIndex, x);
    }

    @Override
    public void setShort(int parameterIndex, short x) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, x);
        realStatement.setShort(parameterIndex, x);
    }

    @Override
    public void setInt(int parameterIndex, int x) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, x);
        realStatement.setInt(parameterIndex, x);
    }

    @Override
    public void setLong(int parameterIndex, long x) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, x);
        realStatement.setLong(parameterIndex, x);
    }

    @Override
    public void setFloat(int parameterIndex, float x) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, x);
        realStatement.setFloat(parameterIndex, x);
    }

    @Override
    public void setDouble(int parameterIndex, double x) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, x);
        realStatement.setDouble(parameterIndex, x);
    }

    @Override
    public void setBigDecimal(int parameterIndex, BigDecimal x) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, x);
        realStatement.setBigDecimal(parameterIndex, x);
    }

    @Override
    public void setString(int parameterIndex, String x) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, x);
        realStatement.setString(parameterIndex, x);
    }

    @Override
    public void setBytes(int parameterIndex, byte[] x) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, SQL_PARAMETER_PLACEHOLDER);
        realStatement.setBytes(parameterIndex, x);
    }

    @Override
    public void setDate(int parameterIndex, Date x) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, x);
        realStatement.setDate(parameterIndex, x);
    }

    @Override
    public void setTime(int parameterIndex, Time x) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, x);
        realStatement.setTime(parameterIndex, x);
    }

    @Override
    public void setTimestamp(int parameterIndex, Timestamp x) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, x);
        realStatement.setTimestamp(parameterIndex, x);
    }

    @Override
    public void setAsciiStream(int parameterIndex, InputStream x, int length) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, SQL_PARAMETER_PLACEHOLDER);
        realStatement.setAsciiStream(parameterIndex, x, length);
    }

    @Override
    @Deprecated
    public void setUnicodeStream(int parameterIndex, InputStream x, int length) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, SQL_PARAMETER_PLACEHOLDER);
        realStatement.setUnicodeStream(parameterIndex, x, length);
    }

    @Override
    public void setBinaryStream(int parameterIndex, InputStream x, int length) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, SQL_PARAMETER_PLACEHOLDER);
        realStatement.setBinaryStream(parameterIndex, x, length);
    }

    @Override
    public void clearParameters() throws SQLException {
        realStatement.clearParameters();
    }

    @Override
    public void setObject(int parameterIndex, Object x, int targetSqlType) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, x);
        realStatement.setObject(parameterIndex, x, targetSqlType);
    }

    @Override
    public void setObject(int parameterIndex, Object x) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, x);
        realStatement.setObject(parameterIndex, x);
    }

    @Override
    public boolean execute() throws SQLException {
        return PreparedStatementTracing.execute(realStatement, connectInfo, "execute", sql,
                new PreparedStatementTracing.Executable<Boolean>() {
                    @Override
                    public Boolean exe(PreparedStatement realStatement, String sql) throws SQLException {
                        return realStatement.execute();
                    }
                }, statementEnhanceInfos);
    }

    @Override
    public void addBatch() throws SQLException {
        realStatement.addBatch();
    }

    @Override
    public void setCharacterStream(int parameterIndex, Reader reader, int length) throws SQLException {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



apm-sniffer/apm-sdk-plugin/jdbc-commons/src/main/java/org/apache/skywalking/apm/plugin/jdbc/trace/SWPreparedStatement.java [73:512]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public ResultSet executeQuery(String sql) throws SQLException {
        return PreparedStatementTracing.execute(realStatement, connectInfo, "executeQuery", sql,
                new PreparedStatementTracing.Executable<ResultSet>() {
                    @Override
                    public ResultSet exe(PreparedStatement realStatement, String sql) throws SQLException {
                        return realStatement.executeQuery(sql);
                    }
                }, statementEnhanceInfos);
    }

    @Override
    public int executeUpdate(String sql) throws SQLException {
        return PreparedStatementTracing.execute(realStatement, connectInfo, "executeUpdate", sql,
                new PreparedStatementTracing.Executable<Integer>() {
                    @Override
                    public Integer exe(PreparedStatement realStatement, String sql) throws SQLException {
                        return realStatement.executeUpdate(sql);
                    }
                }, statementEnhanceInfos);
    }

    @Override
    public void close() throws SQLException {
        realStatement.close();
    }

    @Override
    public int getMaxFieldSize() throws SQLException {
        return realStatement.getMaxFieldSize();
    }

    @Override
    public void setMaxFieldSize(int max) throws SQLException {
        realStatement.setMaxFieldSize(max);
    }

    @Override
    public int getMaxRows() throws SQLException {
        return realStatement.getMaxRows();
    }

    @Override
    public void setMaxRows(int max) throws SQLException {
        realStatement.setMaxRows(max);
    }

    @Override
    public void setEscapeProcessing(boolean enable) throws SQLException {
        realStatement.setEscapeProcessing(enable);
    }

    @Override
    public int getQueryTimeout() throws SQLException {
        return realStatement.getQueryTimeout();
    }

    @Override
    public void setQueryTimeout(int seconds) throws SQLException {
        realStatement.setQueryTimeout(seconds);
    }

    @Override
    public void cancel() throws SQLException {
        realStatement.cancel();
    }

    @Override
    public SQLWarning getWarnings() throws SQLException {
        return realStatement.getWarnings();
    }

    @Override
    public void clearWarnings() throws SQLException {
        realStatement.clearWarnings();
    }

    @Override
    public void setCursorName(String name) throws SQLException {
        realStatement.setCursorName(name);
    }

    @Override
    public boolean execute(String sql) throws SQLException {
        return PreparedStatementTracing.execute(realStatement, connectInfo, "execute", sql,
                new PreparedStatementTracing.Executable<Boolean>() {
                    @Override
                    public Boolean exe(PreparedStatement realStatement, String sql) throws SQLException {
                        return realStatement.execute(sql);
                    }
                }, statementEnhanceInfos);
    }

    @Override
    public ResultSet getResultSet() throws SQLException {
        return realStatement.getResultSet();
    }

    @Override
    public int getUpdateCount() throws SQLException {
        return realStatement.getUpdateCount();
    }

    @Override
    public boolean getMoreResults() throws SQLException {
        return realStatement.getMoreResults();
    }

    @Override
    public void setFetchDirection(int direction) throws SQLException {
        realStatement.setFetchDirection(direction);
    }

    @Override
    public int getFetchDirection() throws SQLException {
        return realStatement.getFetchDirection();
    }

    @Override
    public void setFetchSize(int rows) throws SQLException {
        realStatement.setFetchSize(rows);
    }

    @Override
    public int getFetchSize() throws SQLException {
        return realStatement.getFetchSize();
    }

    @Override
    public int getResultSetConcurrency() throws SQLException {
        return realStatement.getResultSetConcurrency();
    }

    @Override
    public int getResultSetType() throws SQLException {
        return realStatement.getResultSetType();
    }

    @Override
    public void addBatch(String sql) throws SQLException {
        realStatement.addBatch(sql);
    }

    @Override
    public void clearBatch() throws SQLException {
        realStatement.clearBatch();
    }

    @Override
    public int[] executeBatch() throws SQLException {
        return PreparedStatementTracing.execute(realStatement, connectInfo, "executeBatch", "",
                new PreparedStatementTracing.Executable<int[]>() {
                    @Override
                    public int[] exe(PreparedStatement realStatement, String sql) throws SQLException {
                        return realStatement.executeBatch();
                    }
                }, statementEnhanceInfos);
    }

    @Override
    public Connection getConnection() throws SQLException {
        return realConnection;
    }

    @Override
    public boolean getMoreResults(int current) throws SQLException {
        return realStatement.getMoreResults(current);
    }

    @Override
    public ResultSet getGeneratedKeys() throws SQLException {
        return realStatement.getGeneratedKeys();
    }

    @Override
    public int executeUpdate(String sql, final int autoGeneratedKeys) throws SQLException {
        return PreparedStatementTracing.execute(realStatement, connectInfo, "executeUpdate", sql,
                new PreparedStatementTracing.Executable<Integer>() {
                    @Override
                    public Integer exe(PreparedStatement realStatement, String sql) throws SQLException {
                        return realStatement.executeUpdate(sql, autoGeneratedKeys);
                    }
                }, statementEnhanceInfos);
    }

    @Override
    public int executeUpdate(String sql, final int[] columnIndexes) throws SQLException {
        return PreparedStatementTracing.execute(realStatement, connectInfo, "executeUpdate", sql,
                new PreparedStatementTracing.Executable<Integer>() {
                    @Override
                    public Integer exe(PreparedStatement realStatement, String sql) throws SQLException {
                        return realStatement.executeUpdate(sql, columnIndexes);
                    }
                }, statementEnhanceInfos);
    }

    @Override
    public int executeUpdate(String sql, final String[] columnNames) throws SQLException {
        return PreparedStatementTracing.execute(realStatement, connectInfo, "executeUpdate", sql,
                new PreparedStatementTracing.Executable<Integer>() {
                    @Override
                    public Integer exe(PreparedStatement realStatement, String sql) throws SQLException {
                        return realStatement.executeUpdate(sql, columnNames);
                    }
                }, statementEnhanceInfos);
    }

    @Override
    public boolean execute(String sql, final int autoGeneratedKeys) throws SQLException {
        return PreparedStatementTracing.execute(realStatement, connectInfo, "execute", sql,
                new PreparedStatementTracing.Executable<Boolean>() {
                    @Override
                    public Boolean exe(PreparedStatement realStatement, String sql) throws SQLException {
                        return realStatement.execute(sql, autoGeneratedKeys);
                    }
                }, statementEnhanceInfos);
    }

    @Override
    public boolean execute(String sql, final int[] columnIndexes) throws SQLException {
        return PreparedStatementTracing.execute(realStatement, connectInfo, "execute", sql,
                new PreparedStatementTracing.Executable<Boolean>() {
                    @Override
                    public Boolean exe(PreparedStatement realStatement, String sql) throws SQLException {
                        return realStatement.execute(sql, columnIndexes);
                    }
                }, statementEnhanceInfos);
    }

    @Override
    public boolean execute(String sql, final String[] columnNames) throws SQLException {
        return PreparedStatementTracing.execute(realStatement, connectInfo, "execute", sql,
                new PreparedStatementTracing.Executable<Boolean>() {
                    @Override
                    public Boolean exe(PreparedStatement realStatement, String sql) throws SQLException {
                        return realStatement.execute(sql, columnNames);
                    }
                }, statementEnhanceInfos);
    }

    @Override
    public int getResultSetHoldability() throws SQLException {
        return realStatement.getResultSetHoldability();
    }

    @Override
    public boolean isClosed() throws SQLException {
        return realStatement.isClosed();
    }

    @Override
    public void setPoolable(boolean poolable) throws SQLException {
        realStatement.setPoolable(poolable);
    }

    @Override
    public boolean isPoolable() throws SQLException {
        return realStatement.isPoolable();
    }

    @Override
    public void closeOnCompletion() throws SQLException {
        realStatement.closeOnCompletion();
    }

    @Override
    public boolean isCloseOnCompletion() throws SQLException {
        return realStatement.isCloseOnCompletion();
    }

    @Override
    public <T> T unwrap(Class<T> iface) throws SQLException {
        return realStatement.unwrap(iface);
    }

    @Override
    public boolean isWrapperFor(Class<?> iface) throws SQLException {
        return realStatement.isWrapperFor(iface);
    }

    @Override
    public ResultSet executeQuery() throws SQLException {
        return PreparedStatementTracing.execute(realStatement, connectInfo, "executeQuery", sql,
                new PreparedStatementTracing.Executable<ResultSet>() {
                    @Override
                    public ResultSet exe(PreparedStatement realStatement, String sql) throws SQLException {
                        return realStatement.executeQuery();
                    }
                }, statementEnhanceInfos);
    }

    @Override
    public int executeUpdate() throws SQLException {
        return PreparedStatementTracing.execute(realStatement, connectInfo, "executeUpdate", sql,
                new PreparedStatementTracing.Executable<Integer>() {
                    @Override
                    public Integer exe(PreparedStatement realStatement, String sql) throws SQLException {
                        return realStatement.executeUpdate();
                    }
                }, statementEnhanceInfos);
    }

    @Override
    public void setNull(int parameterIndex, int sqlType) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, "NULL");
        realStatement.setNull(parameterIndex, sqlType);
    }

    @Override
    public void setBoolean(int parameterIndex, boolean x) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, x);
        realStatement.setBoolean(parameterIndex, x);
    }

    @Override
    public void setByte(int parameterIndex, byte x) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, SQL_PARAMETER_PLACEHOLDER);
        realStatement.setByte(parameterIndex, x);
    }

    @Override
    public void setShort(int parameterIndex, short x) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, x);
        realStatement.setShort(parameterIndex, x);
    }

    @Override
    public void setInt(int parameterIndex, int x) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, x);
        realStatement.setInt(parameterIndex, x);
    }

    @Override
    public void setLong(int parameterIndex, long x) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, x);
        realStatement.setLong(parameterIndex, x);
    }

    @Override
    public void setFloat(int parameterIndex, float x) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, x);
        realStatement.setFloat(parameterIndex, x);
    }

    @Override
    public void setDouble(int parameterIndex, double x) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, x);
        realStatement.setDouble(parameterIndex, x);
    }

    @Override
    public void setBigDecimal(int parameterIndex, BigDecimal x) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, x);
        realStatement.setBigDecimal(parameterIndex, x);
    }

    @Override
    public void setString(int parameterIndex, String x) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, x);
        realStatement.setString(parameterIndex, x);
    }

    @Override
    public void setBytes(int parameterIndex, byte[] x) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, SQL_PARAMETER_PLACEHOLDER);
        realStatement.setBytes(parameterIndex, x);
    }

    @Override
    public void setDate(int parameterIndex, Date x) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, x);
        realStatement.setDate(parameterIndex, x);
    }

    @Override
    public void setTime(int parameterIndex, Time x) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, x);
        realStatement.setTime(parameterIndex, x);
    }

    @Override
    public void setTimestamp(int parameterIndex, Timestamp x) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, x);
        realStatement.setTimestamp(parameterIndex, x);
    }

    @Override
    public void setAsciiStream(int parameterIndex, InputStream x, int length) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, SQL_PARAMETER_PLACEHOLDER);
        realStatement.setAsciiStream(parameterIndex, x, length);
    }

    @Override
    @Deprecated
    public void setUnicodeStream(int parameterIndex, InputStream x, int length) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, SQL_PARAMETER_PLACEHOLDER);
        realStatement.setUnicodeStream(parameterIndex, x, length);
    }

    @Override
    public void setBinaryStream(int parameterIndex, InputStream x, int length) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, SQL_PARAMETER_PLACEHOLDER);
        realStatement.setBinaryStream(parameterIndex, x, length);
    }

    @Override
    public void clearParameters() throws SQLException {
        realStatement.clearParameters();
    }

    @Override
    public void setObject(int parameterIndex, Object x, int targetSqlType) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, x);
        realStatement.setObject(parameterIndex, x, targetSqlType);
    }

    @Override
    public void setObject(int parameterIndex, Object x) throws SQLException {
        statementEnhanceInfos.setParameter(parameterIndex, x);
        realStatement.setObject(parameterIndex, x);
    }

    @Override
    public boolean execute() throws SQLException {
        return PreparedStatementTracing.execute(realStatement, connectInfo, "execute", sql,
                new PreparedStatementTracing.Executable<Boolean>() {
                    @Override
                    public Boolean exe(PreparedStatement realStatement, String sql) throws SQLException {
                        return realStatement.execute();
                    }
                }, statementEnhanceInfos);
    }

    @Override
    public void addBatch() throws SQLException {
        realStatement.addBatch();
    }

    @Override
    public void setCharacterStream(int parameterIndex, Reader reader, int length) throws SQLException {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



