Source Code Cross Referenced for MysqlConnectionTester.java in  » Database-JDBC-Connection-Pool » mysql-connector-java-5.1.3 » com » mysql » jdbc » integration » c3p0 » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Database JDBC Connection Pool » mysql connector java 5.1.3 » com.mysql.jdbc.integration.c3p0 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         Copyright (C) 2002-2005 MySQL AB
003:
004:         This program is free software; you can redistribute it and/or modify
005:         it under the terms of version 2 of the GNU General Public License as 
006:         published by the Free Software Foundation.
007:
008:         There are special exceptions to the terms and conditions of the GPL 
009:         as it is applied to this software. View the full text of the 
010:         exception in file EXCEPTIONS-CONNECTOR-J in the directory of this 
011:         software distribution.
012:
013:         This program is distributed in the hope that it will be useful,
014:         but WITHOUT ANY WARRANTY; without even the implied warranty of
015:         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
016:         GNU General Public License for more details.
017:
018:         You should have received a copy of the GNU General Public License
019:         along with this program; if not, write to the Free Software
020:         Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
021:
022:         */
023:        package com.mysql.jdbc.integration.c3p0;
024:
025:        import java.lang.reflect.Method;
026:        import java.sql.Connection;
027:        import java.sql.SQLException;
028:        import java.sql.Statement;
029:
030:        import com.mchange.v2.c3p0.C3P0ProxyConnection;
031:        import com.mchange.v2.c3p0.QueryConnectionTester;
032:        import com.mysql.jdbc.CommunicationsException;
033:
034:        /**
035:         * ConnectionTester for C3P0 connection pool that uses the more efficient
036:         * COM_PING method of testing connection 'liveness' for MySQL, and 'sorts'
037:         * exceptions based on SQLState or class of 'CommunicationsException' for
038:         * handling exceptions.
039:         * 
040:         * @version $Id: MysqlConnectionTester.java,v 1.1.2.1 2005/05/13 18:58:39
041:         *          mmatthews Exp $
042:         */
043:        public final class MysqlConnectionTester implements 
044:                QueryConnectionTester {
045:
046:            private static final long serialVersionUID = 3256444690067896368L;
047:
048:            private static final Object[] NO_ARGS_ARRAY = new Object[0];
049:
050:            private Method pingMethod;
051:
052:            public MysqlConnectionTester() {
053:                try {
054:                    pingMethod = com.mysql.jdbc.Connection.class.getMethod(
055:                            "ping", null);
056:                } catch (Exception ex) {
057:                    // punt, we have no way to recover, other than we now use 'SELECT 1'
058:                    // for
059:                    // handling the connection testing.
060:                }
061:            }
062:
063:            /*
064:             * (non-Javadoc)
065:             * 
066:             * @see com.mchange.v2.c3p0.ConnectionTester#activeCheckConnection(java.sql.Connection)
067:             */
068:            public int activeCheckConnection(Connection con) {
069:                try {
070:                    if (pingMethod != null) {
071:                        if (con instanceof  com.mysql.jdbc.Connection) {
072:                            // We've been passed an instance of a MySQL connection --
073:                            // no need for reflection
074:                            ((com.mysql.jdbc.Connection) con).ping();
075:                        } else {
076:                            // Assume the connection is a C3P0 proxy
077:                            C3P0ProxyConnection castCon = (C3P0ProxyConnection) con;
078:                            castCon.rawConnectionOperation(pingMethod,
079:                                    C3P0ProxyConnection.RAW_CONNECTION,
080:                                    NO_ARGS_ARRAY);
081:                        }
082:                    } else {
083:                        Statement pingStatement = null;
084:
085:                        try {
086:                            pingStatement = con.createStatement();
087:                            pingStatement.executeQuery("SELECT 1").close();
088:                        } finally {
089:                            if (pingStatement != null) {
090:                                pingStatement.close();
091:                            }
092:                        }
093:                    }
094:
095:                    return CONNECTION_IS_OKAY;
096:                } catch (Exception ex) {
097:                    return CONNECTION_IS_INVALID;
098:                }
099:            }
100:
101:            /*
102:             * (non-Javadoc)
103:             * 
104:             * @see com.mchange.v2.c3p0.ConnectionTester#statusOnException(java.sql.Connection,
105:             *      java.lang.Throwable)
106:             */
107:            public int statusOnException(Connection arg0, Throwable throwable) {
108:                if (throwable instanceof  CommunicationsException
109:                        || "com.mysql.jdbc.exceptions.jdbc4.CommunicationsException"
110:                                .equals(throwable.getClass().getName())) {
111:                    return CONNECTION_IS_INVALID;
112:                }
113:
114:                if (throwable instanceof  SQLException) {
115:                    String sqlState = ((SQLException) throwable).getSQLState();
116:
117:                    if (sqlState != null && sqlState.startsWith("08")) {
118:                        return CONNECTION_IS_INVALID;
119:                    }
120:
121:                    return CONNECTION_IS_OKAY;
122:                }
123:
124:                // Runtime/Unchecked?
125:
126:                return CONNECTION_IS_INVALID;
127:            }
128:
129:            /*
130:             * (non-Javadoc)
131:             * 
132:             * @see com.mchange.v2.c3p0.QueryConnectionTester#activeCheckConnection(java.sql.Connection,
133:             *      java.lang.String)
134:             */
135:            public int activeCheckConnection(Connection arg0, String arg1) {
136:                return CONNECTION_IS_OKAY;
137:            }
138:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.