basestatement.java
来自「PostgreSQL7.4.6 for Linux」· Java 代码 · 共 42 行
JAVA
42 行
/*------------------------------------------------------------------------- * * BaseStatement.java * The internal interface definition for a jdbc statement * * Copyright (c) 2003, PostgreSQL Global Development Group * * IDENTIFICATION * $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/core/Attic/BaseStatement.java,v 1.6.2.1 2004/03/29 17:47:47 barry Exp $ * *------------------------------------------------------------------------- */package org.postgresql.core;import org.postgresql.PGRefCursorResultSet;import java.sql.*;import java.util.Vector;public interface BaseStatement extends org.postgresql.PGStatement{ public BaseResultSet createResultSet(Field[] fields, Vector tuples, String status, int updateCount, long insertOID) throws SQLException; public PGRefCursorResultSet createRefCursorResultSet(String cursorName) throws SQLException; public BaseConnection getPGConnection(); /* * The maxRows limit is set to limit the number of rows that * any ResultSet can contain. If the limit is exceeded, the * excess rows are silently dropped. */ public void addWarning(String p_warning) throws SQLException; public void close() throws SQLException; public int getFetchSize(); public int getMaxFieldSize() throws SQLException; public int getMaxRows() throws SQLException; public int getResultSetConcurrency() throws SQLException; public String getFetchingCursorName(); public SQLWarning getWarnings() throws SQLException; public void setMaxFieldSize(int max) throws SQLException;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?