You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by ha...@apache.org on 2001/11/26 10:51:56 UTC

cvs commit: jakarta-avalon-cornerstone/apps/db/src/java/org/apache/avalon/db/transport/soap/client/glue/jdbc30 JDBC30GlueConnection.java

hammant     01/11/26 01:51:56

  Added:       apps/db/src/java/org/apache/avalon/db/transport/soap/client/glue/jdbc30
                        JDBC30GlueConnection.java
  Log:
  Speling fix
  
  Revision  Changes    Path
  1.1                  jakarta-avalon-cornerstone/apps/db/src/java/org/apache/avalon/db/transport/soap/client/glue/jdbc30/JDBC30GlueConnection.java
  
  Index: JDBC30GlueConnection.java
  ===================================================================
  
  /*
   * Copyright (C) The Apache Software Foundation. All rights reserved.
   *
   * This software is published under the terms of the Apache Software License
   * version 1.1, a copy of which has been included with this distribution in
   * the LICENSE file.
   */
  package org.apache.avalon.db.transport.soap.client.glue.jdbc30;
  
  import org.apache.avalon.db.transport.soap.client.glue.GlueConnection;
  import org.apache.avalon.db.driver.jdbc30.JDBC30StatementFactory;
  
  import java.sql.Savepoint;
  import java.sql.SQLException;
  import java.sql.Statement;
  import java.sql.PreparedStatement;
  import java.sql.CallableStatement;
  
  public class JDBC30GlueConnection extends GlueConnection {
  
      public JDBC30GlueConnection() throws SQLException {
          mStatementFactory = new JDBC30StatementFactory();
      }
  
      public Savepoint setSavepoint() throws SQLException {
          debug();
          return null;
      }
  
      public Savepoint setSavepoint(String s) throws SQLException {
          debug();
          return null;
      }
  
      public void rollback(Savepoint savepoint) throws SQLException {
          debug();
      }
  
      public void releaseSavepoint(Savepoint savepoint) throws SQLException {
          debug();
      }
  
      public Statement createStatement(int i, int i1, int i2) throws SQLException {
          debug();
          return null;
      }
  
      public PreparedStatement prepareStatement(String s, int i, int i1, int i2) throws SQLException {
          debug();
          return null;
      }
  
      public CallableStatement prepareCall(String s, int i, int i1, int i2) throws SQLException {
          debug();
          return null;
      }
  
      public PreparedStatement prepareStatement(String s, int i) throws SQLException {
          debug();
          return null;
      }
  
      public PreparedStatement prepareStatement(String s, int[] ints) throws SQLException {
          debug();
          return null;
      }
  
      public PreparedStatement prepareStatement(String s, String[] strings) throws SQLException {
          debug();
          return null;
      }
  
  
  }
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>