blob: e7a34237f5661d573d9e4d0d7d892a51bfa6a81a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.datatools.enablement.internal.oracle;
import org.eclipse.datatools.connectivity.IConnection;
import org.eclipse.datatools.connectivity.IConnectionFactory;
import org.eclipse.datatools.connectivity.IConnectionProfile;
public class JDBCOracleConnectionFactory implements IConnectionFactory {
public JDBCOracleConnectionFactory() {
super();
}
public IConnection createConnection(IConnectionProfile profile) {
JDBCOracleJDBCConnection connection = new JDBCOracleJDBCConnection(profile,
getClass());
connection.open();
return connection;
}
public IConnection createConnection(IConnectionProfile profile, String uid,
String pwd) {
return createConnection(profile);
}
}