Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JDK 11 java.sql.jmod - SQL Module
JDK 11 java.sql.jmod is the JMOD file for JDK 11 SQL (Structured Query Language) module.
JDK 11 SQL module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\java.sql.jmod.
JDK 11 SQL module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 SQL module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\java.sql.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ javax/sql/ConnectionEventListener.java
/* * Copyright (c) 2000, 2001, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javax.sql; /** * <P> * An object that registers to be notified of events generated by a * <code>PooledConnection</code> object. * <P> * The <code>ConnectionEventListener</code> interface is implemented by a * connection pooling component. A connection pooling component will * usually be provided by a JDBC driver vendor or another system software * vendor. A JDBC driver notifies a <code>ConnectionEventListener</code> * object when an application is finished using a pooled connection with * which the listener has registered. The notification * occurs after the application calls the method <code>close</code> on * its representation of a <code>PooledConnection</code> object. A * <code>ConnectionEventListener</code> is also notified when a * connection error occurs due to the fact that the <code>PooledConnection</code> * is unfit for future use---the server has crashed, for example. * The listener is notified by the JDBC driver just before the driver throws an * <code>SQLException</code> to the application using the * <code>PooledConnection</code> object. * * @since 1.4 */ public interface ConnectionEventListener extends java.util.EventListener { /** * Notifies this <code>ConnectionEventListener</code> that * the application has called the method <code>close</code> on its * representation of a pooled connection. * * @param event an event object describing the source of * the event */ void connectionClosed(ConnectionEvent event); /** * Notifies this <code>ConnectionEventListener</code> that * a fatal error has occurred and the pooled connection can * no longer be used. The driver makes this notification just * before it throws the application the <code>SQLException</code> * contained in the given <code>ConnectionEvent</code> object. * * @param event an event object describing the source of * the event and containing the <code>SQLException</code> that the * driver is about to throw */ void connectionErrorOccurred(ConnectionEvent event); }
⏎ javax/sql/ConnectionEventListener.java
Or download all of them as a single archive file:
File name: java.sql-11.0.1-src.zip File size: 202257 bytes Release date: 2018-11-04 Download
⇒ JDK 11 java.sql.rowset.jmod - SQL Rowset Module
2020-09-15, 21241👍, 0💬
Popular Posts:
Apache Avalon began in 1999 as the Java Apache Server Framework and in late 2002 separated from the ...
How to read XML document with DTD validation from socket connections with the socket\DelayedInput.ja.. .
Apache BCEL Source Code Files are inside the Apache BCEL source package file like bcel-6.6.1-src.zip...
What Is commons-fileupload-1.3.3 .jar?commons-fileupload-1.3.3 .jaris the JAR file for Apache Common...
JDK 11 java.xml.crypto.jmod is the JMOD file for JDK 11 XML (eXtensible Markup Language) Crypto modu...