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/StatementEventListener.java
/* * Copyright (c) 2005, 2014, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ /* * Created on Apr 28, 2005 */ package javax.sql; /** * An object that registers to be notified of events that occur on PreparedStatements * that are in the Statement pool. * <p> * The JDBC 3.0 specification added the maxStatements * <code>ConnectionPooledDataSource</code> property to provide a standard mechanism for * enabling the pooling of <code>PreparedStatements</code> * and to specify the size of the statement * pool. However, there was no way for a driver to notify an external * statement pool when a <code>PreparedStatement</code> becomes invalid. For some databases, a * statement becomes invalid if a DDL operation is performed that affects the * table. For example an application may create a temporary table to do some work * on the table and then destroy it. It may later recreate the same table when * it is needed again. Some databases will invalidate any prepared statements * that reference the temporary table when the table is dropped. * <p> * Similar to the methods defined in the <code>ConnectionEventListener</code> interface, * the driver will call the <code>StatementEventListener.statementErrorOccurred</code> * method prior to throwing any exceptions when it detects a statement is invalid. * The driver will also call the <code>StatementEventListener.statementClosed</code> * method when a <code>PreparedStatement</code> is closed. * <p> * Methods which allow a component to register a StatementEventListener with a * <code>PooledConnection</code> have been added to the <code>PooledConnection</code> interface. * * @since 1.6 */ public interface StatementEventListener extends java.util.EventListener{ /** * The driver calls this method on all <code>StatementEventListener</code>s registered on the connection when it detects that a * <code>PreparedStatement</code> is closed. * * @param event an event object describing the source of * the event and that the <code>PreparedStatement</code> was closed. * @since 1.6 */ void statementClosed(StatementEvent event); /** * The driver calls this method on all <code>StatementEventListener</code>s * registered on the connection when it detects that a * <code>PreparedStatement</code> is invalid. The driver calls this method * just before it throws the <code>SQLException</code>, * contained in the given event, to the application. * * @param event an event object describing the source of the event, * the statement that is invalid and the exception the * driver is about to throw. The source of the event is * the <code>PooledConnection</code> which the invalid <code>PreparedStatement</code> * is associated with. * * @since 1.6 */ void statementErrorOccurred(StatementEvent event); }
⏎ javax/sql/StatementEventListener.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, 21252👍, 0💬
Popular Posts:
How to download and install JDK (Java Development Kit) 1.3? If you want to write Java applications, ...
Swingx is the SwingLabs Swing Component Extensions. JAR File Size and Download Location: File name: ...
JLayer is a library that decodes/plays/converts MPEG 1/2/2.5 Layer 1/2/3 (i.e. MP3) in real time for...
What Is XMLBeans xbean.jar 2.6.0? XMLBeans xbean.jar 2.6.0 is the JAR file for Apache XMLBeans 2.6.0...
JDK 11 java.sql.jmod is the JMOD file for JDK 11 SQL (Structured Query Language) module. JDK 11 SQL ...