Categories:
Audio (13)
Biotech (29)
Bytecode (22)
Database (79)
Framework (7)
Game (7)
General (497)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (70)
JavaBeans (16)
JDBC (86)
JDK (338)
JSP (20)
Logging (90)
Mail (54)
Messaging (8)
Network (106)
PDF (82)
Report (7)
Scripting (75)
Security (67)
Server (112)
Servlet (17)
SOAP (24)
Testing (55)
Web (24)
XML (287)
Other Resources:
JDK 11 java.sql.rowset.jmod - SQL Rowset Module
JDK 11 java.sql.rowset.jmod is the JMOD file for JDK 11 SQL Rowset module.
JDK 11 SQL Rowset module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\java.sql.rowset.jmod.
JDK 11 SQL Rowset module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 SQL Rowset module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\java.sql.rowset.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ com/sun/rowset/internal/BaseRow.java
/* * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.rowset.internal; import java.sql.*; import java.io.*; import java.util.Arrays; /** * The abstract base class from which the classes <code>Row</code> * The class <code>BaseRow</code> stores * a row's original values as an array of <code>Object</code> * values, which can be retrieved with the method <code>getOrigRow</code>. * This class also provides methods for getting and setting individual * values in the row. * <P> * A row's original values are the values it contained before it was last * modified. For example, when the <code>CachedRowSet</code>method * <code>acceptChanges</code> is called, it will reset a row's original * values to be the row's current values. Then, when the row is modified, * the values that were previously the current values will become the row's * original values (the values the row had immediately before it was modified). * If a row has not been modified, its original values are its initial values. * <P> * Subclasses of this class contain more specific details, such as * the conditions under which an exception is thrown or the bounds for * index parameters. */ public abstract class BaseRow implements Serializable, Cloneable { /** * Specify the serialVersionUID */ private static final long serialVersionUID = 4152013523511412238L; /** * The array containing the original values for this <code>BaseRow</code> * object. * @serial */ protected Object[] origVals; /** * Retrieves the values that this row contained immediately * prior to its last modification. * * @return an array of <code>Object</code> values containing this row's * original values */ public Object[] getOrigRow() { Object[] origRow = this.origVals; return (origRow == null) ? null: Arrays.copyOf(origRow, origRow.length); } /** * Retrieves the array element at the given index, which is * the original value of column number <i>idx</i> in this row. * * @param idx the index of the element to return * @return the <code>Object</code> value at the given index into this * row's array of original values * @throws SQLException if there is an error */ public abstract Object getColumnObject(int idx) throws SQLException; /** * Sets the element at the given index into this row's array of * original values to the given value. Implementations of the classes * <code>Row</code> and determine what happens * when the cursor is on the insert row and when it is on any other row. * * @param idx the index of the element to be set * @param obj the <code>Object</code> to which the element at index * <code>idx</code> to be set * @throws SQLException if there is an error */ public abstract void setColumnObject(int idx, Object obj) throws SQLException; }
⏎ com/sun/rowset/internal/BaseRow.java
⇒ JDK 11 java.transaction.xa.jmod - Transaction XA Module
2020-08-25, 7937👍, 0💬
Popular Posts:
Apache Ant is a Java-based build tool. In theory, it is kind of like make, without make's wrinkles. ...
Jetty provides an HTTP server, HTTP client, and javax.servlet container. These components are open s...
If you are running a Java application and receiving an java.lang.ClassNotFoundE xceptionerror, it is...
What Is activation.jar? I heard it's related to JAF (JavaBeans Activation Framework) 1.0.2? The if y...
Apache Axis2 is the core engine for Web services. It is a complete re-design and re-write of the wid...