User: user57  
  Date: 02/03/21 17:37:46

  Added:       src/main/java/sql ParameterMetaData.java Savepoint.java
  Log:
   o Adding 2 interfaces from 1.4 for 1.3 compat*
   o Uncommented JDK 1.4 specifics
   o Modified build to include 2 java.sql interfaces unless using 1.4
  
  Revision  Changes    Path
  1.1                  jbosscx/src/main/java/sql/ParameterMetaData.java
  
  Index: ParameterMetaData.java
  ===================================================================
  /***************************************
   *                                     *
   *  JBoss: The OpenSource J2EE WebOS   *
   *                                     *
   *  Distributable under LGPL license.  *
   *  See terms of license at gnu.org.   *
   *                                     *
   ***************************************/
  
  package java.sql;
  
  /**
   * A HACK to allow building under JDK 1.3.
   */
  public interface ParameterMetaData 
  {
     int getParameterCount() throws SQLException;
  
     int isNullable(int param) throws SQLException;
  
     int parameterNoNulls = 0;
  
     int parameterNullable = 1;
  
     int parameterNullableUnknown = 2;
  
     boolean isSigned(int param) throws SQLException;
  
     int getPrecision(int param) throws SQLException;
  
     int getScale(int param) throws SQLException;       
  
     int getParameterType(int param) throws SQLException;
  
     String getParameterTypeName(int param) throws SQLException;
  
     String getParameterClassName(int param) throws SQLException;
  
     int parameterModeUnknown = 0;
  
     int parameterModeIn = 1;
  
     int parameterModeInOut = 2;
  
     int parameterModeOut = 4;
  
     int getParameterMode(int param) throws SQLException;
  }
  
  
  
  1.1                  jbosscx/src/main/java/sql/Savepoint.java
  
  Index: Savepoint.java
  ===================================================================
  /***************************************
   *                                     *
   *  JBoss: The OpenSource J2EE WebOS   *
   *                                     *
   *  Distributable under LGPL license.  *
   *  See terms of license at gnu.org.   *
   *                                     *
   ***************************************/
  
  package java.sql;
  
  /**
   * A HACK to allow building under JDK 1.3
   */
  public interface Savepoint
  {
     int getSavepointId() throws SQLException;
  
     String getSavepointName() throws SQLException;
  }
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to