1 package uba.db.jdbc;
2
3 import java.sql.Connection;
4 import java.sql.DriverPropertyInfo;
5 import java.util.Properties;
6
7 /***
8 * @version $Revision: 1.1.1.1 $
9 */
10 public class SocketConnectionFactory implements ConnectionFactory {
11
12
13
14
15 public boolean canCreateConnectionTo(String connectionURL) {
16
17 return false;
18 }
19
20
21
22
23 public DriverPropertyInfo[] getConnectionPropertiesInformation() {
24
25 return null;
26 }
27
28
29
30
31 public Connection createConnection(String url, Properties info) {
32
33 return null;
34 }
35
36 }