Return-Path: Delivered-To: apmail-jakarta-avalon-cvs-archive@apache.org Received: (qmail 98135 invoked from network); 26 Nov 2001 10:08:16 -0000 Received: from unknown (HELO nagoya.betaversion.org) (192.18.49.131) by daedalus.apache.org with SMTP; 26 Nov 2001 10:08:16 -0000 Received: (qmail 23935 invoked by uid 97); 26 Nov 2001 10:08:26 -0000 Delivered-To: qmlist-jakarta-archive-avalon-cvs@jakarta.apache.org Received: (qmail 23889 invoked by uid 97); 26 Nov 2001 10:08:25 -0000 Mailing-List: contact avalon-cvs-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Avalon CVS List" Reply-To: "Avalon Developers List" Delivered-To: mailing list avalon-cvs@jakarta.apache.org Received: (qmail 23875 invoked by uid 97); 26 Nov 2001 10:08:24 -0000 Date: 26 Nov 2001 09:51:56 -0000 Message-ID: <20011126095156.4741.qmail@icarus.apache.org> From: hammant@apache.org To: jakarta-avalon-cornerstone-cvs@apache.org Subject: cvs commit: jakarta-avalon-cornerstone/apps/db/src/java/org/apache/avalon/db/transport/soap/client/glue/jdbc30 JDBC30GlueConnection.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N 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: For additional commands, e-mail: