Commit 74350daa authored by Bill Lynch's avatar Bill Lynch Committed by bill

Initial checkin


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@264 b35dd754-fafc-0310-a699-88a17e54d16e
parent 8262744a
<%--
- $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="core" prefix="c" %>
<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 = "Database Properties";
pageinfo.setTitle(title);
pageinfo.getBreadcrumbs().add(new AdminPageBean.Breadcrumb("Main", "main.jsp"));
pageinfo.getBreadcrumbs().add(new AdminPageBean.Breadcrumb(title, "server-db.jsp"));
pageinfo.setPageID("server-db");
%>
<jsp:include page="top.jsp" flush="true" />
<jsp:include page="title.jsp" flush="true" />
<% // Get metadata about the database
Connection con = null;
try {
con = DbConnectionManager.getConnection();
DatabaseMetaData metaData = con.getMetaData();
%>
<p>
Below is a list of properties for your database and the JDBC driver.
</p>
<div class="jive-table">
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<thead>
<tr>
<th colspan="2">Database Connection Info</th>
</tr>
</thead>
<tbody>
<tr>
<td class="c1">
Database and Version:
</td>
<td class="c2">
<%= metaData.getDatabaseProductName() %>
<%= metaData.getDatabaseProductVersion() %>
</td>
</tr>
<tr>
<td class="c1">
JDBC Driver:
</td>
<td class="c2">
<%= metaData.getDriverName() %>
</td>
</tr>
<tr>
<td class="c1">
JDBC Driver Version:
</td>
<td class="c2">
<%= metaData.getDriverVersion() %>
</td>
</tr>
<tr>
<td class="c1">
DB Connection URL:
</td>
<td class="c2">
<%= metaData.getURL() %>
</td>
</tr>
<tr>
<td class="c1">
DB User:
</td>
<td class="c2">
<%= metaData.getUserName() %>
</td>
</tr>
<tr>
<td class="c1">
Transaction Support:
</td>
<td class="c2">
<%= (metaData.supportsTransactions()) ? "Yes" : "No" %>
</td>
</tr>
<% if (metaData.supportsTransactions()) { %>
<tr>
<td class="c1">
Transaction Isolation 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">
Supports multiple connections<br>open at once:
</td>
<td class="c2">
<%= (metaData.supportsMultipleTransactions()) ? "Yes" : "No" %>
</td>
</tr>
<tr>
<td class="c1">
In 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" />
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment