Java Doc for BrokeredCallableStatement.java in  » Database-DBMS » db-derby-10.2 » org » apache » derby » iapi » jdbc » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Database DBMS » db derby 10.2 » org.apache.derby.iapi.jdbc 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.derby.iapi.jdbc.BrokeredStatement
      org.apache.derby.iapi.jdbc.BrokeredPreparedStatement
         org.apache.derby.iapi.jdbc.BrokeredCallableStatement

All known Subclasses:   org.apache.derby.iapi.jdbc.BrokeredCallableStatement30,
BrokeredCallableStatement
public class BrokeredCallableStatement extends BrokeredPreparedStatement implements CallableStatement(Code)
JDBC 2 brokered CallableStatement



Constructor Summary
public  BrokeredCallableStatement(BrokeredStatementControl control, int jdbcLevel, String sql)
    

Method Summary
public  CallableStatementcreateDuplicateStatement(Connection conn, CallableStatement oldStatement)
     Create a duplicate CalableStatement to this, including state, from the passed in Connection.
final public  ArraygetArray(int i)
    
final public  BigDecimalgetBigDecimal(int parameterIndex, int scale)
    
final public  BigDecimalgetBigDecimal(int parameterIndex)
    
final public  BlobgetBlob(int i)
    
final public  booleangetBoolean(int parameterIndex)
    
final public  bytegetByte(int parameterIndex)
    
final public  byte[]getBytes(int parameterIndex)
    
final  CallableStatementgetCallableStatement()
     Access the underlying CallableStatement.
final public  ClobgetClob(int i)
    
final public  DategetDate(int parameterIndex)
    
final public  DategetDate(int parameterIndex, Calendar cal)
    
final public  doublegetDouble(int parameterIndex)
    
final public  floatgetFloat(int parameterIndex)
    
final public  intgetInt(int parameterIndex)
    
final public  longgetLong(int parameterIndex)
    
final public  ObjectgetObject(int parameterIndex)
    
final public  ObjectgetObject(int i, Map map)
    
final  PreparedStatementgetPreparedStatement()
     Access the underlying PreparedStatement.
final public  RefgetRef(int i)
    
final public  shortgetShort(int parameterIndex)
    
final public  StringgetString(int parameterIndex)
    
final public  TimegetTime(int parameterIndex)
    
final public  TimegetTime(int parameterIndex, Calendar cal)
    
final public  TimestampgetTimestamp(int parameterIndex)
    
final public  TimestampgetTimestamp(int parameterIndex, Calendar cal)
    
final public  voidregisterOutParameter(int parameterIndex, int sqlType)
    
final public  voidregisterOutParameter(int parameterIndex, int sqlType, int scale)
    
final public  voidregisterOutParameter(int paramIndex, int sqlType, String typeName)
    
final public  booleanwasNull()
    


Constructor Detail
BrokeredCallableStatement
public BrokeredCallableStatement(BrokeredStatementControl control, int jdbcLevel, String sql) throws SQLException(Code)




Method Detail
createDuplicateStatement
public CallableStatement createDuplicateStatement(Connection conn, CallableStatement oldStatement) throws SQLException(Code)
Create a duplicate CalableStatement to this, including state, from the passed in Connection.



getArray
final public Array getArray(int i) throws SQLException(Code)



getBigDecimal
final public BigDecimal getBigDecimal(int parameterIndex, int scale) throws SQLException(Code)



getBigDecimal
final public BigDecimal getBigDecimal(int parameterIndex) throws SQLException(Code)



getBlob
final public Blob getBlob(int i) throws SQLException(Code)



getBoolean
final public boolean getBoolean(int parameterIndex) throws SQLException(Code)



getByte
final public byte getByte(int parameterIndex) throws SQLException(Code)



getBytes
final public byte[] getBytes(int parameterIndex) throws SQLException(Code)



getCallableStatement
final CallableStatement getCallableStatement() throws SQLException(Code)
Access the underlying CallableStatement. This method is package protected to restrict access to the underlying object to the brokered objects. Allowing the application to access the underlying object thtough a public method would



getClob
final public Clob getClob(int i) throws SQLException(Code)



getDate
final public Date getDate(int parameterIndex) throws SQLException(Code)



getDate
final public Date getDate(int parameterIndex, Calendar cal) throws SQLException(Code)



getDouble
final public double getDouble(int parameterIndex) throws SQLException(Code)



getFloat
final public float getFloat(int parameterIndex) throws SQLException(Code)



getInt
final public int getInt(int parameterIndex) throws SQLException(Code)



getLong
final public long getLong(int parameterIndex) throws SQLException(Code)



getObject
final public Object getObject(int parameterIndex) throws SQLException(Code)



getObject
final public Object getObject(int i, Map map) throws SQLException(Code)



getPreparedStatement
final PreparedStatement getPreparedStatement() throws SQLException(Code)
Access the underlying PreparedStatement. This method is package protected to restrict access to the underlying object to the brokered objects. Allowing the application to access the underlying object thtough a public method would



getRef
final public Ref getRef(int i) throws SQLException(Code)



getShort
final public short getShort(int parameterIndex) throws SQLException(Code)



getString
final public String getString(int parameterIndex) throws SQLException(Code)



getTime
final public Time getTime(int parameterIndex) throws SQLException(Code)



getTime
final public Time getTime(int parameterIndex, Calendar cal) throws SQLException(Code)



getTimestamp
final public Timestamp getTimestamp(int parameterIndex) throws SQLException(Code)



getTimestamp
final public Timestamp getTimestamp(int parameterIndex, Calendar cal) throws SQLException(Code)



registerOutParameter
final public void registerOutParameter(int parameterIndex, int sqlType) throws SQLException(Code)



registerOutParameter
final public void registerOutParameter(int parameterIndex, int sqlType, int scale) throws SQLException(Code)



registerOutParameter
final public void registerOutParameter(int paramIndex, int sqlType, String typeName) throws SQLException(Code)



wasNull
final public boolean wasNull() throws SQLException(Code)



Fields inherited from org.apache.derby.iapi.jdbc.BrokeredPreparedStatement
final String sql(Code)(Java Doc)

Methods inherited from org.apache.derby.iapi.jdbc.BrokeredPreparedStatement
final public void addBatch() throws SQLException(Code)(Java Doc)
final public void clearParameters() throws SQLException(Code)(Java Doc)
public PreparedStatement createDuplicateStatement(Connection conn, PreparedStatement oldStatement) throws SQLException(Code)(Java Doc)
final public boolean execute() throws SQLException(Code)(Java Doc)
final public ResultSet executeQuery() throws SQLException(Code)(Java Doc)
final public int executeUpdate() throws SQLException(Code)(Java Doc)
public EngineParameterMetaData getEmbedParameterSetMetaData() throws SQLException(Code)(Java Doc)
final public java.sql.ResultSetMetaData getMetaData() throws SQLException(Code)(Java Doc)
PreparedStatement getPreparedStatement() throws SQLException(Code)(Java Doc)
final public Statement getStatement() throws SQLException(Code)(Java Doc)
final public void setArray(int i, Array x) throws SQLException(Code)(Java Doc)
final public void setAsciiStream(int parameterIndex, InputStream x, int length) throws SQLException(Code)(Java Doc)
final public void setBigDecimal(int parameterIndex, java.math.BigDecimal x) throws SQLException(Code)(Java Doc)
final public void setBinaryStream(int parameterIndex, InputStream x, int length) throws SQLException(Code)(Java Doc)
final public void setBlob(int i, Blob x) throws SQLException(Code)(Java Doc)
final public void setBoolean(int parameterIndex, boolean x) throws SQLException(Code)(Java Doc)
final public void setByte(int parameterIndex, byte x) throws SQLException(Code)(Java Doc)
final public void setBytes(int parameterIndex, byte[] x) throws SQLException(Code)(Java Doc)
final public void setCharacterStream(int parameterIndex, Reader reader, int length) throws SQLException(Code)(Java Doc)
final public void setClob(int i, Clob x) throws SQLException(Code)(Java Doc)
final public void setDate(int parameterIndex, Date x) throws SQLException(Code)(Java Doc)
final public void setDate(int i, Date x, Calendar cal) throws SQLException(Code)(Java Doc)
final public void setDouble(int parameterIndex, double x) throws SQLException(Code)(Java Doc)
final public void setFloat(int parameterIndex, float x) throws SQLException(Code)(Java Doc)
final public void setInt(int parameterIndex, int x) throws SQLException(Code)(Java Doc)
final public void setLong(int parameterIndex, long x) throws SQLException(Code)(Java Doc)
final public void setNull(int parameterIndex, int sqlType) throws SQLException(Code)(Java Doc)
final public void setNull(int parameterIndex, int sqlType, String typeName) throws SQLException(Code)(Java Doc)
final public void setObject(int parameterIndex, Object x, int targetSqlType, int scale) throws SQLException(Code)(Java Doc)
final public void setObject(int parameterIndex, Object x, int targetSqlType) throws SQLException(Code)(Java Doc)
final public void setObject(int parameterIndex, Object x) throws SQLException(Code)(Java Doc)
final public void setRef(int i, Ref x) throws SQLException(Code)(Java Doc)
final public void setShort(int parameterIndex, short x) throws SQLException(Code)(Java Doc)
final public void setString(int parameterIndex, String x) throws SQLException(Code)(Java Doc)
final public void setTime(int parameterIndex, Time x) throws SQLException(Code)(Java Doc)
final public void setTime(int i, Time x, Calendar cal) throws SQLException(Code)(Java Doc)
final public void setTimestamp(int parameterIndex, Timestamp x) throws SQLException(Code)(Java Doc)
final public void setTimestamp(int i, Timestamp x, Calendar cal) throws SQLException(Code)(Java Doc)
final public void setUnicodeStream(int parameterIndex, InputStream x, int length) throws SQLException(Code)(Java Doc)

Fields inherited from org.apache.derby.iapi.jdbc.BrokeredStatement
final BrokeredStatementControl control(Code)(Java Doc)
final int jdbcLevel(Code)(Java Doc)
final int resultSetConcurrency(Code)(Java Doc)
final int resultSetHoldability(Code)(Java Doc)
final int resultSetType(Code)(Java Doc)

Methods inherited from org.apache.derby.iapi.jdbc.BrokeredStatement
final public void addBatch(String sql) throws SQLException(Code)(Java Doc)
final public void cancel() throws SQLException(Code)(Java Doc)
final protected void checkIfClosed() throws SQLException(Code)(Java Doc)
final public void clearBatch() throws SQLException(Code)(Java Doc)
final public void clearWarnings() throws SQLException(Code)(Java Doc)
final public void close() throws SQLException(Code)(Java Doc)
final BrokeredStatementControl controlCheck() throws SQLException(Code)(Java Doc)
public Statement createDuplicateStatement(Connection conn, Statement oldStatement) throws SQLException(Code)(Java Doc)
final public boolean execute(String sql) throws SQLException(Code)(Java Doc)
final public boolean execute(String sql, int autoGeneratedKeys) throws SQLException(Code)(Java Doc)
final public boolean execute(String sql, int[] columnIndexes) throws SQLException(Code)(Java Doc)
final public boolean execute(String sql, String[] columnNames) throws SQLException(Code)(Java Doc)
final public int[] executeBatch() throws SQLException(Code)(Java Doc)
final public ResultSet executeQuery(String sql) throws SQLException(Code)(Java Doc)
final public int executeUpdate(String sql) throws SQLException(Code)(Java Doc)
final public int executeUpdate(String sql, int autoGeneratedKeys) throws SQLException(Code)(Java Doc)
final public int executeUpdate(String sql, int[] columnIndexes) throws SQLException(Code)(Java Doc)
final public int executeUpdate(String sql, String[] columnNames) throws SQLException(Code)(Java Doc)
final public Connection getConnection() throws SQLException(Code)(Java Doc)
final public int getFetchDirection() throws SQLException(Code)(Java Doc)
final public int getFetchSize() throws SQLException(Code)(Java Doc)
final public ResultSet getGeneratedKeys() throws SQLException(Code)(Java Doc)
final public int getMaxFieldSize() throws SQLException(Code)(Java Doc)
final public int getMaxRows() throws SQLException(Code)(Java Doc)
final public boolean getMoreResults() throws SQLException(Code)(Java Doc)
final public boolean getMoreResults(int current) throws SQLException(Code)(Java Doc)
final public int getQueryTimeout() throws SQLException(Code)(Java Doc)
final public ResultSet getResultSet() throws SQLException(Code)(Java Doc)
final public int getResultSetConcurrency() throws SQLException(Code)(Java Doc)
final public int getResultSetHoldability() throws SQLException(Code)(Java Doc)
final public int getResultSetType() throws SQLException(Code)(Java Doc)
public Statement getStatement() throws SQLException(Code)(Java Doc)
final public int getUpdateCount() throws SQLException(Code)(Java Doc)
final public SQLWarning getWarnings() throws SQLException(Code)(Java Doc)
protected boolean isClosed() throws SQLException(Code)(Java Doc)
public boolean isWrapperFor(Class iface) throws SQLException(Code)(Java Doc)
final public void setCursorName(String name) throws SQLException(Code)(Java Doc)
final public void setEscapeProcessing(boolean enable) throws SQLException(Code)(Java Doc)
final public void setFetchDirection(int direction) throws SQLException(Code)(Java Doc)
final public void setFetchSize(int rows) throws SQLException(Code)(Java Doc)
final public void setMaxFieldSize(int max) throws SQLException(Code)(Java Doc)
final public void setMaxRows(int max) throws SQLException(Code)(Java Doc)
final public void setQueryTimeout(int seconds) throws SQLException(Code)(Java Doc)
void setStatementState(Statement oldStatement, Statement newStatement) throws SQLException(Code)(Java Doc)
final ResultSet wrapResultSet(ResultSet rs)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.