Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/java/sql/modules/mystubdriver/com/luckydogtennis/StubDriver.java
41161 views
1
/*
2
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*/
23
package com.luckydogtennis;
24
25
import java.sql.Connection;
26
import java.sql.Driver;
27
import java.sql.DriverManager;
28
import java.sql.DriverPropertyInfo;
29
import java.sql.SQLException;
30
import java.sql.SQLFeatureNotSupportedException;
31
import java.util.Properties;
32
import java.util.logging.Level;
33
import java.util.logging.Logger;
34
35
public class StubDriver implements Driver {
36
37
static {
38
System.out.println("*****in static block StubDriver");
39
registerDriver();
40
}
41
42
private static void registerDriver() {
43
try {
44
DriverManager.registerDriver(new StubDriver());
45
} catch (SQLException ex) {
46
Logger.getLogger(StubDriver.class.getName()).log(Level.SEVERE, null, ex);
47
}
48
}
49
50
public StubDriver() {
51
System.out.println("*****in StubDriver Constructor*************");
52
/*
53
for (StackTraceElement ste : Thread.currentThread().getStackTrace()) {
54
System.out.println(ste);
55
}
56
System.out.println("******************");
57
*/
58
}
59
60
@Override
61
public Connection connect(String url, Properties info) throws SQLException {
62
if (acceptsURL(url)) {
63
return new StubConnection();
64
}
65
return null;
66
}
67
68
@Override
69
public boolean acceptsURL(String url) throws SQLException {
70
return url.matches("^jdbc:stub:.*");
71
}
72
73
@Override
74
public DriverPropertyInfo[] getPropertyInfo(String url, Properties info) throws SQLException {
75
throw new UnsupportedOperationException("Not supported yet.");
76
}
77
78
@Override
79
public int getMajorVersion() {
80
return 1;
81
}
82
83
@Override
84
public int getMinorVersion() {
85
return 0;
86
}
87
88
@Override
89
public boolean jdbcCompliant() {
90
return true;
91
}
92
93
@Override
94
public Logger getParentLogger() throws SQLFeatureNotSupportedException {
95
throw new UnsupportedOperationException("Not supported yet.");
96
}
97
}
98
99