1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<%--
- $RCSfile$
- $Revision$
- $Date$
-
- Copyright (C) 2004 Jive Software. All rights reserved.
-
- This software is published under the terms of the GNU Public License (GPL),
- a copy of which is included in this distribution.
--%>
<%@ page import="org.jivesoftware.util.*,
org.jivesoftware.database.DbConnectionManager,
org.jivesoftware.admin.AdminPageBean,
java.sql.*"
errorPage="error.jsp"
%>
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jstl/fmt_rt" prefix="fmt" %>
<jsp:useBean id="pageinfo" scope="request" class="org.jivesoftware.admin.AdminPageBean" />
<%-- Define Administration Bean --%>
<jsp:useBean id="admin" class="org.jivesoftware.util.WebManager" />
<% admin.init(request, response, session, application, out ); %>
<% // Title of this page and breadcrumbs
String title = LocaleUtils.getLocalizedString("server.db.title");
pageinfo.setTitle(title);
pageinfo.getBreadcrumbs().add(new AdminPageBean.Breadcrumb(LocaleUtils.getLocalizedString("global.main"), "index.jsp"));
pageinfo.getBreadcrumbs().add(new AdminPageBean.Breadcrumb(title, "server-db.jsp"));
pageinfo.setPageID("server-db");
%>
<jsp:include page="top.jsp" flush="true">
<jsp:param name="helpPage" value="view_database_connection_properties.html" />
</jsp:include>
<jsp:include page="title.jsp" flush="true" />
<% // Get metadata about the database
Connection con = null;
try {
con = DbConnectionManager.getConnection();
DatabaseMetaData metaData = con.getMetaData();
%>
<p>
<fmt:message key="server.db.info" />
</p>
<div class="jive-table">
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<thead>
<tr>
<th colspan="2"><fmt:message key="server.db.connect_info" /></th>
</tr>
</thead>
<tbody>
<tr>
<td class="c1">
<fmt:message key="server.db.version" />
</td>
<td class="c2">
<%= metaData.getDatabaseProductName() %>
<%= metaData.getDatabaseProductVersion() %>
</td>
</tr>
<tr>
<td class="c1">
<fmt:message key="server.db.jdbc" />
</td>
<td class="c2">
<%= metaData.getDriverName() %>
</td>
</tr>
<tr>
<td class="c1">
<fmt:message key="server.db.jdbc_driver" />
</td>
<td class="c2">
<%= metaData.getDriverVersion() %>
</td>
</tr>
<tr>
<td class="c1">
<fmt:message key="server.db.connect_url" />
</td>
<td class="c2">
<%= metaData.getURL() %>
</td>
</tr>
<tr>
<td class="c1">
<fmt:message key="server.db.user" />
</td>
<td class="c2">
<%= metaData.getUserName() %>
</td>
</tr>
<tr>
<td class="c1">
<fmt:message key="server.db.transaction" />
</td>
<td class="c2">
<%= (metaData.supportsTransactions()) ? "Yes" : "No" %>
</td>
</tr>
<% if (metaData.supportsTransactions()) { %>
<tr>
<td class="c1">
<fmt:message key="server.db.transaction_level" />
</td>
<td class="c2">
<% if (con.getTransactionIsolation() == Connection.TRANSACTION_NONE) { %>
TRANSACTION_NONE
<% } else if (con.getTransactionIsolation() == Connection.TRANSACTION_READ_COMMITTED) { %>
TRANSACTION_READ_COMMITTED
<% } else if (con.getTransactionIsolation() == Connection.TRANSACTION_READ_UNCOMMITTED) { %>
TRANSACTION_READ_UNCOMMITTED
<% } else if (con.getTransactionIsolation() == Connection.TRANSACTION_REPEATABLE_READ) { %>
TRANSACTION_REPEATABLE_READ
<% } else if (con.getTransactionIsolation() == Connection.TRANSACTION_SERIALIZABLE) { %>
TRANSACTION_SERIALIZABLE
<% } %>
</td>
</tr>
<% } %>
<tr>
<td class="c1">
<fmt:message key="server.db.multiple_connect" /><br>
<fmt:message key="server.db.multiple_connect2" />
</td>
<td class="c2">
<%= (metaData.supportsMultipleTransactions()) ? "Yes" : "No" %>
</td>
</tr>
<tr>
<td class="c1">
<fmt:message key="server.db.read_only_mode" />
</td>
<td class="c2">
<%= (metaData.isReadOnly()) ? "Yes" : "No" %>
</td>
</tr>
</tbody>
</table>
</div>
<% }
finally {
try { if (con != null) { con.close(); } }
catch (SQLException e) { Log.error(e); }
}
%>
<jsp:include page="bottom.jsp" flush="true" />