Interface PreparedStatement

    • Method Detail

      • executeQuery

        ResultSet executeQuery()
                        throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • executeUpdate

        int executeUpdate()
                   throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • setNull

        void setNull​(int parameterIndex,
                     int sqlType)
              throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • setBoolean

        void setBoolean​(int parameterIndex,
                        boolean x)
                 throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • setByte

        void setByte​(int parameterIndex,
                     byte x)
              throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • setShort

        void setShort​(int parameterIndex,
                      short x)
               throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • setInt

        void setInt​(int parameterIndex,
                    int x)
             throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • setLong

        void setLong​(int parameterIndex,
                     long x)
              throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • setDouble

        void setDouble​(int parameterIndex,
                       double x)
                throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • setBigDecimal

        void setBigDecimal​(int parameterIndex,
                           BigDecimal x)
                    throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • setString

        void setString​(int parameterIndex,
                       java.lang.String x)
                throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • setBytes

        void setBytes​(int parameterIndex,
                      byte[] x)
               throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • setDate

        void setDate​(int parameterIndex,
                     Date x)
              throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • setTime

        void setTime​(int parameterIndex,
                     Time x)
              throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • setTimestamp

        void setTimestamp​(int parameterIndex,
                          Timestamp x)
                   throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • clearParameters

        void clearParameters()
                      throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • setObject

        void setObject​(int parameterIndex,
                       java.lang.Object x,
                       int targetSqlType,
                       int scale)
                throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • setObject

        void setObject​(int parameterIndex,
                       java.lang.Object x,
                       int targetSqlType)
                throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • setObject

        void setObject​(int parameterIndex,
                       java.lang.Object x)
                throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • execute

        boolean execute()
                 throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • addBatch

        void addBatch()
               throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getMetaData

        ResultSetMetaData getMetaData()
                               throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • setNull

        void setNull​(int paramIndex,
                     int sqlType,
                     java.lang.String typeName)
              throws java.sql.SQLException
        Throws:
        java.sql.SQLException