⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 resultsetmetadata.java

📁 kaffe是一个java虚拟机的源代码。里面包含了一些java例程和标准的java包。
💻 JAVA
字号:
/* * Java core library component. * * Copyright (c) 1998 *      Transvirtual Technologies, Inc.  All rights reserved. * * See the file "license.terms" for information on usage and redistribution * of this file. */package java.sql;public interface ResultSetMetaData {int columnNoNulls = 0;int columnNullable = 1;int columnNullableUnknown = 2;int getColumnCount() throws SQLException;boolean isAutoIncrement(int column) throws SQLException;boolean isCaseSensitive(int column) throws SQLException;boolean isSearchable(int column) throws SQLException;boolean isCurrency(int column) throws SQLException;int isNullable(int column) throws SQLException;boolean isSigned(int column) throws SQLException;int getColumnDisplaySize(int column) throws SQLException;String getColumnLabel(int column) throws SQLException;String getColumnName(int column) throws SQLException;String getSchemaName(int column) throws SQLException;int getPrecision(int column) throws SQLException;int getScale(int column) throws SQLException;String getTableName(int column) throws SQLException;String getCatalogName(int column) throws SQLException;int getColumnType(int column) throws SQLException;String getColumnTypeName(int column) throws SQLException;boolean isReadOnly(int column) throws SQLException;boolean isWritable(int column) throws SQLException;boolean isDefinitelyWritable(int column) throws SQLException;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -