Class SQLXMLType

java.lang.Object
com.querydsl.sql.types.AbstractType<SQLXML>
com.querydsl.sql.types.SQLXMLType
All Implemented Interfaces:
Type<SQLXML>

public class SQLXMLType extends AbstractType<SQLXML>
SQLXMLType maps SQLXML to SQLXML on the JDBC level
Author:
tiwe
  • Constructor Details

    • SQLXMLType

      public SQLXMLType()
    • SQLXMLType

      public SQLXMLType(int type)
  • Method Details

    • getValue

      public SQLXML getValue(ResultSet rs, int startIndex) throws SQLException
      Description copied from interface: Type
      Get the object from the result set
      Parameters:
      rs - result set
      startIndex - column index in result set
      Returns:
      value
      Throws:
      SQLException
    • getReturnedClass

      public Class<SQLXML> getReturnedClass()
      Description copied from interface: Type
      Get the returned type
      Returns:
      returned class
    • setValue

      public void setValue(PreparedStatement st, int startIndex, SQLXML value) throws SQLException
      Description copied from interface: Type
      Set the object to the statement
      Parameters:
      st - statement
      startIndex - column index in statement
      value - value to be set
      Throws:
      SQLException