jdk/src/share/classes/java/sql/DatabaseMetaData.java
changeset 21278 ef8a3a2a72f2
parent 20880 1b610151b316
child 23590 ffd8b0b70511
equal deleted inserted replaced
21277:bd380b80f9ea 21278:ef8a3a2a72f2
  1699      * Retrieves a description of the access rights for a table's columns.
  1699      * Retrieves a description of the access rights for a table's columns.
  1700      *
  1700      *
  1701      * <P>Only privileges matching the column name criteria are
  1701      * <P>Only privileges matching the column name criteria are
  1702      * returned.  They are ordered by COLUMN_NAME and PRIVILEGE.
  1702      * returned.  They are ordered by COLUMN_NAME and PRIVILEGE.
  1703      *
  1703      *
  1704      * <P>Each privilige description has the following columns:
  1704      * <P>Each privilege description has the following columns:
  1705      *  <OL>
  1705      *  <OL>
  1706      *  <LI><B>TABLE_CAT</B> String {@code =>} table catalog (may be <code>null</code>)
  1706      *  <LI><B>TABLE_CAT</B> String {@code =>} table catalog (may be <code>null</code>)
  1707      *  <LI><B>TABLE_SCHEM</B> String {@code =>} table schema (may be <code>null</code>)
  1707      *  <LI><B>TABLE_SCHEM</B> String {@code =>} table schema (may be <code>null</code>)
  1708      *  <LI><B>TABLE_NAME</B> String {@code =>} table name
  1708      *  <LI><B>TABLE_NAME</B> String {@code =>} table name
  1709      *  <LI><B>COLUMN_NAME</B> String {@code =>} column name
  1709      *  <LI><B>COLUMN_NAME</B> String {@code =>} column name
  1745      * criteria are returned.  They are ordered by
  1745      * criteria are returned.  They are ordered by
  1746      * <code>TABLE_CAT</code>,
  1746      * <code>TABLE_CAT</code>,
  1747      * <code>TABLE_SCHEM</code>, <code>TABLE_NAME</code>,
  1747      * <code>TABLE_SCHEM</code>, <code>TABLE_NAME</code>,
  1748      * and <code>PRIVILEGE</code>.
  1748      * and <code>PRIVILEGE</code>.
  1749      *
  1749      *
  1750      * <P>Each privilige description has the following columns:
  1750      * <P>Each privilege description has the following columns:
  1751      *  <OL>
  1751      *  <OL>
  1752      *  <LI><B>TABLE_CAT</B> String {@code =>} table catalog (may be <code>null</code>)
  1752      *  <LI><B>TABLE_CAT</B> String {@code =>} table catalog (may be <code>null</code>)
  1753      *  <LI><B>TABLE_SCHEM</B> String {@code =>} table schema (may be <code>null</code>)
  1753      *  <LI><B>TABLE_SCHEM</B> String {@code =>} table schema (may be <code>null</code>)
  1754      *  <LI><B>TABLE_NAME</B> String {@code =>} table name
  1754      *  <LI><B>TABLE_NAME</B> String {@code =>} table name
  1755      *  <LI><B>GRANTOR</B> String {@code =>} grantor of access (may be <code>null</code>)
  1755      *  <LI><B>GRANTOR</B> String {@code =>} grantor of access (may be <code>null</code>)
  3255      * @since 1.6
  3255      * @since 1.6
  3256      */
  3256      */
  3257     boolean supportsStoredFunctionsUsingCallSyntax() throws SQLException;
  3257     boolean supportsStoredFunctionsUsingCallSyntax() throws SQLException;
  3258 
  3258 
  3259     /**
  3259     /**
  3260      * Retrieves whether a <code>SQLException</code> while autoCommit is <code>true</code> inidcates
  3260      * Retrieves whether a <code>SQLException</code> while autoCommit is <code>true</code> indicates
  3261      * that all open ResultSets are closed, even ones that are holdable.  When a <code>SQLException</code> occurs while
  3261      * that all open ResultSets are closed, even ones that are holdable.  When a <code>SQLException</code> occurs while
  3262      * autocommit is <code>true</code>, it is vendor specific whether the JDBC driver responds with a commit operation, a
  3262      * autocommit is <code>true</code>, it is vendor specific whether the JDBC driver responds with a commit operation, a
  3263      * rollback operation, or by doing neither a commit nor a rollback.  A potential result of this difference
  3263      * rollback operation, or by doing neither a commit nor a rollback.  A potential result of this difference
  3264      * is in whether or not holdable ResultSets are closed.
  3264      * is in whether or not holdable ResultSets are closed.
  3265      *
  3265      *