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 1.1 Source Code Directory
JDK 1.1 source code directory contains Java source code for JDK 1.1 core classes:
"C:\fyicenter\jdk-1.1.8\src".
Here is the list of Java classes of the JDK 1.1 source code:
✍: FYIcenter
⏎ java/sql/ResultSetMetaData.java
/* * @(#)ResultSetMetaData.java 1.7 01/12/10 * * Copyright 2002 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package java.sql; /** * A ResultSetMetaData object can be used to find out about the types * and properties of the columns in a ResultSet. */ public interface ResultSetMetaData { /** * What's the number of columns in the ResultSet? * * @return the number * @exception SQLException if a database-access error occurs. */ int getColumnCount() throws SQLException; /** * Is the column automatically numbered, thus read-only? * * @param column the first column is 1, the second is 2, ... * @return true if so * @exception SQLException if a database-access error occurs. */ boolean isAutoIncrement(int column) throws SQLException; /** * Does a column's case matter? * * @param column the first column is 1, the second is 2, ... * @return true if so * @exception SQLException if a database-access error occurs. */ boolean isCaseSensitive(int column) throws SQLException; /** * Can the column be used in a where clause? * * @param column the first column is 1, the second is 2, ... * @return true if so * @exception SQLException if a database-access error occurs. */ boolean isSearchable(int column) throws SQLException; /** * Is the column a cash value? * * @param column the first column is 1, the second is 2, ... * @return true if so * @exception SQLException if a database-access error occurs. */ boolean isCurrency(int column) throws SQLException; /** * Can you put a NULL in this column? * * @param column the first column is 1, the second is 2, ... * @return columnNoNulls, columnNullable or columnNullableUnknown * @exception SQLException if a database-access error occurs. */ int isNullable(int column) throws SQLException; /** * Does not allow NULL values. */ int columnNoNulls = 0; /** * Allows NULL values. */ int columnNullable = 1; /** * Nullability unknown. */ int columnNullableUnknown = 2; /** * Is the column a signed number? * * @param column the first column is 1, the second is 2, ... * @return true if so * @exception SQLException if a database-access error occurs. */ boolean isSigned(int column) throws SQLException; /** * What's the column's normal max width in chars? * * @param column the first column is 1, the second is 2, ... * @return max width * @exception SQLException if a database-access error occurs. */ int getColumnDisplaySize(int column) throws SQLException; /** * What's the suggested column title for use in printouts and * displays? * * @param column the first column is 1, the second is 2, ... * @return true if so * @exception SQLException if a database-access error occurs. */ String getColumnLabel(int column) throws SQLException; /** * What's a column's name? * * @param column the first column is 1, the second is 2, ... * @return column name * @exception SQLException if a database-access error occurs. */ String getColumnName(int column) throws SQLException; /** * What's a column's table's schema? * * @param column the first column is 1, the second is 2, ... * @return schema name or "" if not applicable * @exception SQLException if a database-access error occurs. */ String getSchemaName(int column) throws SQLException; /** * What's a column's number of decimal digits? * * @param column the first column is 1, the second is 2, ... * @return precision * @exception SQLException if a database-access error occurs. */ int getPrecision(int column) throws SQLException; /** * What's a column's number of digits to right of the decimal point? * * @param column the first column is 1, the second is 2, ... * @return scale * @exception SQLException if a database-access error occurs. */ int getScale(int column) throws SQLException; /** * What's a column's table name? * * @return table name or "" if not applicable * @exception SQLException if a database-access error occurs. */ String getTableName(int column) throws SQLException; /** * What's a column's table's catalog name? * * @param column the first column is 1, the second is 2, ... * @return column name or "" if not applicable. * @exception SQLException if a database-access error occurs. */ String getCatalogName(int column) throws SQLException; /** * What's a column's SQL type? * * @param column the first column is 1, the second is 2, ... * @return SQL type * @exception SQLException if a database-access error occurs. * @see Types */ int getColumnType(int column) throws SQLException; /** * What's a column's data source specific type name? * * @param column the first column is 1, the second is 2, ... * @return type name * @exception SQLException if a database-access error occurs. */ String getColumnTypeName(int column) throws SQLException; /** * Is a column definitely not writable? * * @param column the first column is 1, the second is 2, ... * @return true if so * @exception SQLException if a database-access error occurs. */ boolean isReadOnly(int column) throws SQLException; /** * Is it possible for a write on the column to succeed? * * @param column the first column is 1, the second is 2, ... * @return true if so * @exception SQLException if a database-access error occurs. */ boolean isWritable(int column) throws SQLException; /** * Will a write on the column definitely succeed? * * @param column the first column is 1, the second is 2, ... * @return true if so * @exception SQLException if a database-access error occurs. */ boolean isDefinitelyWritable(int column) throws SQLException; }
⏎ java/sql/ResultSetMetaData.java
Or download all of them as a single archive file:
File name: jdk-1.1.8-src.zip File size: 1574187 bytes Release date: 2018-11-16 Download
⇒ Backup JDK 1.1 Installation Directory
2018-11-17, 175092👍, 0💬
Popular Posts:
maven-settings-builder-3 .8.6.jaris the JAR file for Apache Maven 3.8.6 Settings Builder module. Apa...
What Is ojdbc8.jar for Oracle 12c R2? ojdbc8.jar for Oracle 12c R2 is the JAR files of ojdbc.jar, JD...
JDK 11 java.sql.rowset.jmod is the JMOD file for JDK 11 SQL Rowset module. JDK 11 SQL Rowset module ...
Apache Avalon began in 1999 as the Java Apache Server Framework and in late 2002 separated from the ...
Apache Log4j API provides the interface that applications should code to and provides the adapter co...