org.springframework.jdbc.datasource
Class AbstractDataSource

java.lang.Object
  extended byorg.springframework.jdbc.datasource.AbstractDataSource
All Implemented Interfaces:
DataSource
Direct Known Subclasses:
DriverManagerDataSource

public abstract class AbstractDataSource
extends Object
implements DataSource

Abstract base class for Spring's DataSource implementations, taking care of the "uninteresting" glue.

Since:
07.05.2003
Author:
Juergen Hoeller
See Also:
DriverManagerDataSource

Field Summary
protected  Log logger
           
 
Constructor Summary
AbstractDataSource()
           
 
Method Summary
 int getLoginTimeout()
          Returns 0: means use default system timeout.
 PrintWriter getLogWriter()
          LogWriter methods are unsupported.
 void setLoginTimeout(int timeout)
           
 void setLogWriter(PrintWriter pw)
          LogWriter methods are unsupported.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface javax.sql.DataSource
getConnection, getConnection
 

Field Detail

logger

protected final Log logger
Constructor Detail

AbstractDataSource

public AbstractDataSource()
Method Detail

getLoginTimeout

public int getLoginTimeout()
                    throws SQLException
Returns 0: means use default system timeout.

Specified by:
getLoginTimeout in interface DataSource
Throws:
SQLException

setLoginTimeout

public void setLoginTimeout(int timeout)
                     throws SQLException
Specified by:
setLoginTimeout in interface DataSource
Throws:
SQLException

getLogWriter

public PrintWriter getLogWriter()
LogWriter methods are unsupported.

Specified by:
getLogWriter in interface DataSource

setLogWriter

public void setLogWriter(PrintWriter pw)
                  throws SQLException
LogWriter methods are unsupported.

Specified by:
setLogWriter in interface DataSource
Throws:
SQLException


Copyright (C) 2003-2004 The Spring Framework Project.