Example usage for Java javax.sql DataSource fields, constructors, methods, implement or subclass
The text is from its open source code.
boolean | equals(Object obj) Indicates whether some other object is "equal to" this one. |
Class> | getClass() Returns the runtime class of this Object . |
Connection | getConnection() Attempts to establish a connection with the data source that this DataSource object represents. |
Connection | getConnection(String username, String password) Attempts to establish a connection with the data source that this DataSource object represents. |
int | getLoginTimeout() |
int | hashCode() Returns a hash code value for the object. |
boolean | isWrapperFor(java.lang.Class> iface) Returns true if this either implements the interface argument or is directly or indirectly a wrapper for an object that does. |
void | setLoginTimeout(int seconds) |
void | setLogWriter(java.io.PrintWriter out) |
String | toString() Returns a string representation of the object. |
T | unwrap(java.lang.Class Returns an object that implements the given interface to allow access to non-standard methods, or standard methods not exposed by the proxy. |