equal
deleted
inserted
replaced
3991 } |
3991 } |
3992 } |
3992 } |
3993 |
3993 |
3994 /** |
3994 /** |
3995 * Retrieves the <code>DatabaseMetaData</code> associated with |
3995 * Retrieves the <code>DatabaseMetaData</code> associated with |
3996 * the connection handle associated this this |
3996 * the connection handle associated with this |
3997 * <code>JdbcRowSet</code> object. |
3997 * <code>JdbcRowSet</code> object. |
3998 * |
3998 * |
3999 * @return the <code>DatabaseMetadata</code> associated |
3999 * @return the <code>DatabaseMetadata</code> associated |
4000 * with the rowset's connection. |
4000 * with the rowset's connection. |
4001 * @throws SQLException if a database access error occurs |
4001 * @throws SQLException if a database access error occurs |
4005 return con.getMetaData(); |
4005 return con.getMetaData(); |
4006 } |
4006 } |
4007 |
4007 |
4008 /** |
4008 /** |
4009 * Retrieves the <code>ParameterMetaData</code> associated with |
4009 * Retrieves the <code>ParameterMetaData</code> associated with |
4010 * the connection handle associated this this |
4010 * the connection handle associated with this |
4011 * <code>JdbcRowSet</code> object. |
4011 * <code>JdbcRowSet</code> object. |
4012 * |
4012 * |
4013 * @return the <code>ParameterMetadata</code> associated |
4013 * @return the <code>ParameterMetadata</code> associated |
4014 * with the rowset's connection. |
4014 * with the rowset's connection. |
4015 * @throws SQLException if a database access error occurs |
4015 * @throws SQLException if a database access error occurs |
4323 * <P> |
4323 * <P> |
4324 * The Url property is a JDBC URL that is used when |
4324 * The Url property is a JDBC URL that is used when |
4325 * the connection is created using a JDBC technology-enabled driver |
4325 * the connection is created using a JDBC technology-enabled driver |
4326 * ("JDBC driver") and the <code>DriverManager</code>. |
4326 * ("JDBC driver") and the <code>DriverManager</code>. |
4327 * The correct JDBC URL for the specific driver to be used can be found |
4327 * The correct JDBC URL for the specific driver to be used can be found |
4328 * in the driver documentation. Although there are guidelines for for how |
4328 * in the driver documentation. Although there are guidelines for how |
4329 * a JDBC URL is formed, |
4329 * a JDBC URL is formed, |
4330 * a driver vendor can specify any <code>String</code> object except |
4330 * a driver vendor can specify any <code>String</code> object except |
4331 * one with a length of <code>0</code> (an empty string). |
4331 * one with a length of <code>0</code> (an empty string). |
4332 * <P> |
4332 * <P> |
4333 * Setting the Url property is optional if connections are established using |
4333 * Setting the Url property is optional if connections are established using |