src/share/classes/java/sql/Types.java

Print this page




 302     public static final int NCLOB = 2011;
 303 
 304     /**
 305      * The constant in the Java programming language, sometimes referred to
 306      * as a type code, that identifies the generic SQL type <code>XML</code>.
 307      *
 308      * @since 1.6
 309      */
 310     public static final int SQLXML = 2009;
 311 
 312     //--------------------------JDBC 4.2 -----------------------------
 313 
 314     /**
 315      * The constant in the Java programming language, sometimes referred to
 316      * as a type code, that identifies the generic SQL type {@code REF CURSOR}.
 317      *
 318      * @since 1.8
 319      */
 320     public static final int REF_CURSOR = 2012;
 321 


















 322     // Prevent instantiation
 323     private Types() {}
 324 }


 302     public static final int NCLOB = 2011;
 303 
 304     /**
 305      * The constant in the Java programming language, sometimes referred to
 306      * as a type code, that identifies the generic SQL type <code>XML</code>.
 307      *
 308      * @since 1.6
 309      */
 310     public static final int SQLXML = 2009;
 311 
 312     //--------------------------JDBC 4.2 -----------------------------
 313 
 314     /**
 315      * The constant in the Java programming language, sometimes referred to
 316      * as a type code, that identifies the generic SQL type {@code REF CURSOR}.
 317      *
 318      * @since 1.8
 319      */
 320     public static final int REF_CURSOR = 2012;
 321 
 322     /**
 323      * The constant in the Java programming language, sometimes referred to
 324      * as a type code, that identifies the generic SQL type
 325      * {@code TIME WITH TIMEZONE}.
 326      *
 327      * @since 1.8
 328      */
 329     public static final int TIME_WITH_TIMEZONE = 2013;
 330 
 331     /**
 332      * The constant in the Java programming language, sometimes referred to
 333      * as a type code, that identifies the generic SQL type
 334      * {@code TIMESTAMP WITH TIMEZONE}.
 335      *
 336      * @since 1.8
 337      */
 338     public static final int TIMESTAMP_WITH_TIMEZONE = 2014;
 339 
 340     // Prevent instantiation
 341     private Types() {}
 342 }