Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/java.sql/share/classes/javax/sql/CommonDataSource.java
41152 views
1
/*
2
* Copyright (c) 2005, 2020, 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. Oracle designates this
8
* particular file as subject to the "Classpath" exception as provided
9
* by Oracle in the LICENSE file that accompanied this code.
10
*
11
* This code is distributed in the hope that it will be useful, but WITHOUT
12
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14
* version 2 for more details (a copy is included in the LICENSE file that
15
* accompanied this code).
16
*
17
* You should have received a copy of the GNU General Public License version
18
* 2 along with this work; if not, write to the Free Software Foundation,
19
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20
*
21
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22
* or visit www.oracle.com if you need additional information or have any
23
* questions.
24
*/
25
26
package javax.sql;
27
28
import java.sql.SQLException;
29
import java.sql.SQLFeatureNotSupportedException;
30
import java.sql.ShardingKeyBuilder;
31
import java.util.logging.Logger;
32
33
/**
34
* Interface that defines the methods which are common between {@code DataSource},
35
* {@code XADataSource} and {@code ConnectionPoolDataSource}.
36
*
37
* @since 1.6
38
*/
39
public interface CommonDataSource {
40
41
/**
42
* <p>Retrieves the log writer for this {@code DataSource}
43
* object.
44
*
45
* <p>The log writer is a character output stream to which all logging
46
* and tracing messages for this data source will be
47
* printed. This includes messages printed by the methods of this
48
* object, messages printed by methods of other objects manufactured
49
* by this object, and so on. Messages printed to a data source
50
* specific log writer are not printed to the log writer associated
51
* with the {@code java.sql.DriverManager} class. When a
52
* {@code DataSource} object is
53
* created, the log writer is initially null; in other words, the
54
* default is for logging to be disabled.
55
*
56
* @return the log writer for this data source or null if
57
* logging is disabled
58
* @throws java.sql.SQLException if a database access error occurs
59
* @see #setLogWriter
60
*/
61
java.io.PrintWriter getLogWriter() throws SQLException;
62
63
/**
64
* <p>Sets the log writer for this {@code DataSource}
65
* object to the given {@code java.io.PrintWriter} object.
66
*
67
* <p>The log writer is a character output stream to which all logging
68
* and tracing messages for this data source will be
69
* printed. This includes messages printed by the methods of this
70
* object, messages printed by methods of other objects manufactured
71
* by this object, and so on. Messages printed to a data source-
72
* specific log writer are not printed to the log writer associated
73
* with the {@code java.sql.DriverManager} class. When a
74
* {@code DataSource} object is created the log writer is
75
* initially null; in other words, the default is for logging to be
76
* disabled.
77
*
78
* @param out the new log writer; to disable logging, set to null
79
* @throws SQLException if a database access error occurs
80
* @see #getLogWriter
81
*/
82
void setLogWriter(java.io.PrintWriter out) throws SQLException;
83
84
/**
85
* <p>Sets the maximum time in seconds that this data source will wait
86
* while attempting to connect to a database. A value of zero
87
* specifies that the timeout is the default system timeout
88
* if there is one; otherwise, it specifies that there is no timeout.
89
* When a {@code DataSource} object is created, the login timeout is
90
* initially zero.
91
*
92
* @param seconds the data source login time limit
93
* @throws SQLException if a database access error occurs.
94
* @see #getLoginTimeout
95
*/
96
void setLoginTimeout(int seconds) throws SQLException;
97
98
/**
99
* Gets the maximum time in seconds that this data source can wait
100
* while attempting to connect to a database. A value of zero
101
* means that the timeout is the default system timeout
102
* if there is one; otherwise, it means that there is no timeout.
103
* When a {@code DataSource} object is created, the login timeout is
104
* initially zero.
105
*
106
* @return the data source login time limit
107
* @throws SQLException if a database access error occurs.
108
* @see #setLoginTimeout
109
*/
110
int getLoginTimeout() throws SQLException;
111
112
//------------------------- JDBC 4.1 -----------------------------------
113
114
/**
115
* Return the parent Logger of all the Loggers used by this data source. This
116
* should be the Logger farthest from the root Logger that is
117
* still an ancestor of all of the Loggers used by this data source. Configuring
118
* this Logger will affect all of the log messages generated by the data source.
119
* In the worst case, this may be the root Logger.
120
*
121
* @return the parent Logger for this data source
122
* @throws SQLFeatureNotSupportedException if the data source does not use
123
* {@code java.util.logging}
124
* @since 1.7
125
*/
126
public Logger getParentLogger() throws SQLFeatureNotSupportedException;
127
128
//------------------------- JDBC 4.3 -----------------------------------
129
130
/**
131
* Creates a new {@code ShardingKeyBuilder} instance
132
* @implSpec
133
* The default implementation will throw a {@code SQLFeatureNotSupportedException}.
134
* @return The ShardingKeyBuilder instance that was created
135
* @throws SQLException if an error occurs creating the builder
136
* @throws SQLFeatureNotSupportedException if the driver does not support this method
137
* @since 9
138
* @see ShardingKeyBuilder
139
*/
140
default ShardingKeyBuilder createShardingKeyBuilder() throws SQLException {
141
throw new SQLFeatureNotSupportedException("createShardingKeyBuilder not implemented");
142
};
143
}
144
145