All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.java.ao.builder.DriverManagerDataSource Maven / Gradle / Ivy

Go to download

This is the full Active Objects library, if you don't know which one to use, you probably want this one.

The newest version!
package net.java.ao.builder;

import javax.sql.DataSource;
import java.io.PrintWriter;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.sql.SQLFeatureNotSupportedException;
import java.util.Objects;
import java.util.logging.Logger;


public final class DriverManagerDataSource implements DataSource {
    private final String url;
    private final String username;
    private final String password;

    private PrintWriter out;
    private int loginTimeOut;

    public DriverManagerDataSource(String url, String username, String password) {
        this.url = Objects.requireNonNull(url,"url can't be null");
        this.username = Objects.requireNonNull(username,"username can't be null");
        this.password = Objects.requireNonNull(password,"password can't be null");
    }

    public Connection getConnection() throws SQLException {
        return getConnection(this.username, this.password);
    }

    public Connection getConnection(String username, String password) throws SQLException {
        return DriverManager.getConnection(url, username, password);
    }

    public  T unwrap(Class iface) throws SQLException {
        return iface.cast(this);
    }

    public boolean isWrapperFor(Class iface) throws SQLException {
        return this.getClass().equals(iface);
    }

    public PrintWriter getLogWriter() throws SQLException {
        return out;
    }

    public void setLogWriter(PrintWriter out) throws SQLException {
        this.out = out;
    }

    public void setLoginTimeout(int seconds) throws SQLException {
        this.loginTimeOut = seconds;
    }

    public int getLoginTimeout() throws SQLException {
        return loginTimeOut;
    }

    // java 7
    public Logger getParentLogger() throws SQLFeatureNotSupportedException {
        throw new SQLFeatureNotSupportedException();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy