jdk/src/share/classes/java/sql/Types.java
changeset 15278 e081d3f73b75
parent 5506 202f599c92aa
child 15643 5e3b735b74ac
equal deleted inserted replaced
15277:245068ba31b3 15278:e081d3f73b75
     1 /*
     1 /*
     2  * Copyright (c) 1996, 2006, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
   307      *
   307      *
   308      * @since 1.6
   308      * @since 1.6
   309      */
   309      */
   310     public static final int SQLXML = 2009;
   310     public static final int SQLXML = 2009;
   311 
   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 
   312     // Prevent instantiation
   322     // Prevent instantiation
   313     private Types() {}
   323     private Types() {}
   314 }
   324 }