/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/cci/ |
H A D | ResultSet.java | 43 /** A ResultSet represents tabular data that is retrieved from an EIS 44 * instance by the execution of an Interaction.. The CCI ResultSet is 45 * based on the JDBC ResultSet. 48 * requirements on the implementation of a CCI ResultSet. 52 * @see java.sql.ResultSet 54 public interface ResultSet extends Record, java.sql.ResultSet { interface in inherits:Record,java.sql.ResultSet
|
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc30/src/main/java/com/sun/gjc/spi/jdbc30/ |
H A D | CallableStatementWrapper30.java | 47 import java.sql.ResultSet; 69 * and returns the <code>ResultSet</code> object generated by the query. 71 * @return a <code>ResultSet</code> object that contains the data produced by the 74 * statement does not return a <code>ResultSet</code> object 76 public java.sql.ResultSet executeQuery() throws java.sql.SQLException { 77 ResultSet rs = callableStatement.executeQuery(); 85 * <code>ResultSet</code> object. 89 * @return a <code>ResultSet</code> object that contains the data produced 93 * <code>ResultSet</code> object 95 public java.sql.ResultSet executeQuer [all...] |
H A D | PreparedStatementWrapper30.java | 47 import java.sql.ResultSet; 69 * and returns the <code>ResultSet</code> object generated by the query. 71 * @return a <code>ResultSet</code> object that contains the data produced by the 74 * statement does not return a <code>ResultSet</code> object 76 public java.sql.ResultSet executeQuery() throws java.sql.SQLException { 77 ResultSet rs = preparedStatement.executeQuery(); 85 * <code>ResultSet</code> object. 89 * @return a <code>ResultSet</code> object that contains the data produced 93 * <code>ResultSet</code> object 95 public java.sql.ResultSet executeQuer [all...] |
H A D | ResultSetWrapper30.java | 45 import java.sql.ResultSet; 57 * @param rs ResultSet that is to be wraped<br>* 60 public ResultSetWrapper30(Statement stmt, ResultSet rs) {
|
H A D | StatementWrapper30.java | 47 import java.sql.ResultSet; 68 * <code>ResultSet</code> object. 72 * @return a <code>ResultSet</code> object that contains the data produced 76 * <code>ResultSet</code> object 78 public java.sql.ResultSet executeQuery(String sql) throws 80 ResultSet rs = jdbcStatement.executeQuery(sql); 89 * not generate any keys, an empty <code>ResultSet</code> 92 * @return a <code>ResultSet</code> object containing the auto-generated key(s) 97 public java.sql.ResultSet getGeneratedKeys() throws java.sql.SQLException { 98 ResultSet r [all...] |
H A D | ConnectionWrapper30.java | 79 * @param resultSetType Type of the ResultSet 80 * @param resultSetConcurrency ResultSet Concurrency. 92 * @param resultSetType Type of the ResultSet 93 * @param resultSetConcurrency ResultSet Concurrency. 94 * @param resultSetHoldability ResultSet Holdability. 125 return mc.prepareCachedCallableStatement(this, sql, ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_READ_ONLY); 133 * @param resultSetType Type of the ResultSet 134 * @param resultSetConcurrency ResultSet Concurrency. 148 * @param resultSetType Type of the ResultSet [all...] |
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc40/src/main/java/com/sun/gjc/spi/jdbc40/ |
H A D | StatementWrapper40.java | 181 * not generate any keys, an empty <code>ResultSet</code> 187 * @return a <code>ResultSet</code> object containing the auto-generated key(s) 195 public java.sql.ResultSet getGeneratedKeys() throws java.sql.SQLException { 196 ResultSet rs = jdbcStatement.getGeneratedKeys(); 203 * Retrieves the current result as a <code>ResultSet</code> object. 206 * @return the current result as a <code>ResultSet</code> object or 212 public java.sql.ResultSet getResultSet() throws java.sql.SQLException { 213 ResultSet rs = jdbcStatement.getResultSet(); 221 * <code>ResultSet</code> object. 225 * @return a <code>ResultSet</cod [all...] |
H A D | DatabaseMetaDataWrapper40.java | 106 * @return a <code>ResultSet</code> object in which each row is a 112 public ResultSet getSchemas(String catalog, String schemaPattern) throws SQLException { 156 * The <code>ResultSet</code> is sorted by the NAME column 161 * @return A <code>ResultSet</code> object; each row is a supported client info 166 public ResultSet getClientInfoProperties() throws SQLException { 213 * @return <code>ResultSet</code> - each row is a function description 218 public ResultSet getFunctions(String catalog, String schemaPattern, String functionNamePattern) throws SQLException { 234 * <P>Each row in the <code>ResultSet</code> 251 * is a column in the <code>ResultSet</code> 310 * @return <code>ResultSet</cod [all...] |
H A D | PreparedStatementWrapper40.java | 633 * and returns the <code>ResultSet</code> object generated by the query. 635 * @return a <code>ResultSet</code> object that contains the data produced by the 639 * statement does not return a <code>ResultSet</code> object 641 public java.sql.ResultSet executeQuery() throws java.sql.SQLException { 642 ResultSet rs = preparedStatement.executeQuery(); 651 * <code>ResultSet</code> object. 655 * @return a <code>ResultSet</code> object that contains the data produced 660 * <code>ResultSet</code> object 662 public java.sql.ResultSet executeQuery(String sql) throws 664 ResultSet r [all...] |
H A D | ConnectionWrapper40.java | 81 * @param resultSetType Type of the ResultSet 82 * @param resultSetConcurrency ResultSet Concurrency. 94 * @param resultSetType Type of the ResultSet 95 * @param resultSetConcurrency ResultSet Concurrency. 96 * @param resultSetHoldability ResultSet Holdability. 127 return mc.prepareCachedCallableStatement(this, sql, ResultSet.TYPE_FORWARD_ONLY, 128 ResultSet.CONCUR_READ_ONLY); 136 * @param resultSetType Type of the ResultSet 137 * @param resultSetConcurrency ResultSet Concurrency. 151 * @param resultSetType Type of the ResultSet [all...] |
H A D | CallableStatementWrapper40.java | 1398 * and returns the <code>ResultSet</code> object generated by the query. 1400 * @return a <code>ResultSet</code> object that contains the data produced by the 1404 * statement does not return a <code>ResultSet</code> object 1406 public java.sql.ResultSet executeQuery() throws java.sql.SQLException { 1407 ResultSet rs = callableStatement.executeQuery(); 1416 * <code>ResultSet</code> object. 1420 * @return a <code>ResultSet</code> object that contains the data produced 1425 * <code>ResultSet</code> object 1427 public java.sql.ResultSet executeQuery(String sql) throws 1429 ResultSet r [all...] |
H A D | ProfiledConnectionWrapper40.java | 53 import java.sql.ResultSet; 105 * @param resultSetType Type of the ResultSet 106 * @param resultSetConcurrency ResultSet Concurrency. 126 * @param resultSetType Type of the ResultSet 127 * @param resultSetConcurrency ResultSet Concurrency. 128 * @param resultSetHoldability ResultSet Holdability. 171 mc.prepareCachedCallableStatement(this,sql, ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_READ_ONLY), 184 * @param resultSetType Type of the ResultSet 185 * @param resultSetConcurrency ResultSet Concurrenc [all...] |
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/sql/generator/ |
H A D | VerificationSelectPlan.java | 46 import java.sql.ResultSet; 90 public Object getResult(PersistenceManager pm, ResultSet resultData)
|
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc-core/src/main/java/com/sun/gjc/spi/base/ |
H A D | DatabaseMetaDataWrapper.java | 47 import java.sql.ResultSet; 618 * <code>ResultSet</code> objects from a single call to the 1459 * @return <code>ResultSet</code> - each row is a procedure description 1463 public ResultSet getProcedures(String catalog, String schemaPattern, 1478 * <P>Each row in the <code>ResultSet</code> is a parameter description or 1492 * <LI> procedureColumnResult - result column in <code>ResultSet</code> 1526 * @return <code>ResultSet</code> - each row describes a stored procedure parameter or 1531 public ResultSet getProcedureColumns(String catalog, String schemaPattern, String procedureNamePattern, 1575 * @return <code>ResultSet</code> - each row is a table description 1579 public ResultSet getTable [all...] |
/glassfish-3.1.2/tests/osgi-javaee/osgi-web/hybridapp1/src/main/java/sahoo/hybridapp/example1/impl/ |
H A D | UserAuthServiceEJB.java | 51 import java.sql.ResultSet; 78 ResultSet rs = s.executeQuery(sql);
|
/glassfish-3.1.2/tests/community/jdbc/jdbcusertx/src/java/util/ |
H A D | TablesUtil.java | 45 import java.sql.ResultSet; 117 ResultSet rs = null;
|
/glassfish-3.1.2/tests/quicklook/jdbc/jdbcusertx/src/java/util/ |
H A D | TablesUtil.java | 45 import java.sql.ResultSet; 117 ResultSet rs = null;
|
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/sql/ |
H A D | ResultDesc.java | 65 import java.sql.ResultSet; 74 * JDBC resultset. Each ResultDesc binds values from the ResultSet 174 private static Object getConvertedObject(ResultSet resultData, 216 private static Object getValueFromResultSet(ResultSet resultData, 234 private static Object getValueFromResultSet(ResultSet resultData, 253 private static Object getValueFromResultSet(ResultSet resultData, 424 * @see java.sql.ResultSet#getBinaryStream(int) 453 * @see java.sql.ResultSet#getCharacterStream(int) 480 * @param resultData - JDBC ResultSet containing the data to be materialized 485 public Object getResult(PersistenceManager pm, ResultSet resultDat [all...] |
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/enterprise/transaction/jts/recovery/ |
H A D | OracleXAResource.java | 101 ResultSet resultset = null; 169 ResultSet resultset = null;
|
/glassfish-3.1.2/tests/jbi/transactions/jse_only_ejbcommit/endpoint/ejb/ |
H A D | HelloEJB.java | 93 ResultSet rs = pStmt.executeQuery();
|
/glassfish-3.1.2/tests/jbi/transactions/jse_only_ejbcommit1/endpoint/ejb/ |
H A D | HelloEJB.java | 96 ResultSet rs = pStmt.executeQuery();
|
/glassfish-3.1.2/tests/jbi/transactions/jse_only_ejbrollback/endpoint/ejb/ |
H A D | HelloEJB.java | 93 ResultSet rs = pStmt.executeQuery();
|
/glassfish-3.1.2/tests/jbi/transactions/jse_only_ejbrollback1/endpoint/ejb/ |
H A D | HelloEJB.java | 96 ResultSet rs = pStmt.executeQuery();
|
/glassfish-3.1.2/tests/community/jdbc/jdbcusertx/src/java/test/ |
H A D | UserTxTest.java | 49 import java.sql.ResultSet; 97 ResultSet rs = null; 172 ResultSet rs = null;
|
/glassfish-3.1.2/tests/quicklook/jdbc/jdbcusertx/src/java/test/ |
H A D | UserTxTest.java | 49 import java.sql.ResultSet; 97 ResultSet rs = null; 172 ResultSet rs = null;
|