Java Doc for BrokeredPreparedStatement40.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.BrokeredPreparedStatement30
            org.apache.derby.iapi.jdbc.BrokeredPreparedStatement40

BrokeredPreparedStatement40
public class BrokeredPreparedStatement40 extends BrokeredPreparedStatement30 (Code)



Constructor Summary
public  BrokeredPreparedStatement40(BrokeredStatementControl control, int jdbcLevel, String sql, Object generatedKeys)
    

Method Summary
final public  booleanisClosed()
     Checks if the statement is closed.
public  booleanisPoolable()
     Forwards to the real PreparedStatement.
final public  voidsetAsciiStream(int parameterIndex, InputStream x)
     Sets the designated parameter to the given input stream.
final public  voidsetAsciiStream(int parameterIndex, InputStream x, long length)
     Sets the designated parameter to the given input stream, which will have the specified number of bytes.
final public  voidsetBinaryStream(int parameterIndex, InputStream x)
     Sets the designated parameter to the given input stream.
final public  voidsetBinaryStream(int parameterIndex, InputStream x, long length)
     Sets the designated parameter to the given input stream, which will have the specified number of bytes.
public  voidsetBlob(int parameterIndex, InputStream inputStream, long length)
    
final public  voidsetBlob(int parameterIndex, InputStream inputStream)
     Sets the designated parameter to a InputStream object.
final public  voidsetCharacterStream(int parameterIndex, Reader reader)
     Sets the designated parameter to the given Reader object.
final public  voidsetCharacterStream(int parameterIndex, Reader x, long length)
     Sets the designated parameter to the given Reader, which will have the specified number of bytes.
public  voidsetClob(int parameterIndex, Reader reader, long length)
    
final public  voidsetClob(int parameterIndex, Reader reader)
     Sets the designated parameter to a Reader object.
public  voidsetNCharacterStream(int parameterIndex, Reader value)
    
public  voidsetNCharacterStream(int index, Reader value, long length)
    
public  voidsetNClob(int index, NClob value)
    
final public  voidsetNClob(int parameterIndex, Reader reader)
    
public  voidsetNClob(int parameterIndex, Reader reader, long length)
    
public  voidsetNString(int index, String value)
    
public  voidsetPoolable(boolean poolable)
     Forwards to the real PreparedStatement.
public  voidsetRowId(int parameterIndex, RowId x)
    
public  voidsetSQLXML(int parameterIndex, SQLXML xmlObject)
    
public  Tunwrap(java.lang.Class<T> interfaces)
    


Constructor Detail
BrokeredPreparedStatement40
public BrokeredPreparedStatement40(BrokeredStatementControl control, int jdbcLevel, String sql, Object generatedKeys) throws SQLException(Code)




Method Detail
isClosed
final public boolean isClosed() throws SQLException(Code)
Checks if the statement is closed. true if the statement is closed,false otherwise
exception:
  SQLException - if an error occurs



isPoolable
public boolean isPoolable() throws SQLException(Code)
Forwards to the real PreparedStatement. true if the underlying PreparedStatement is poolable,false otherwise.
throws:
  SQLException - if the forwarding call fails.



setAsciiStream
final public void setAsciiStream(int parameterIndex, InputStream x) throws SQLException(Code)
Sets the designated parameter to the given input stream.
Parameters:
  parameterIndex - the first parameter is 1, the second is 2, ...
Parameters:
  x - the Java input stream that contains the ASCII parameter value
throws:
  SQLException - if a database access error occurs or this method iscalled on a closed PreparedStatement



setAsciiStream
final public void setAsciiStream(int parameterIndex, InputStream x, long length) throws SQLException(Code)
Sets the designated parameter to the given input stream, which will have the specified number of bytes.
Parameters:
  parameterIndex - the first parameter is 1, the second is 2, ...
Parameters:
  x - the java input stream which contains the ASCII parameter value
Parameters:
  length - the number of bytes in the stream
exception:
  SQLException - thrown on failure.



setBinaryStream
final public void setBinaryStream(int parameterIndex, InputStream x) throws SQLException(Code)
Sets the designated parameter to the given input stream.
Parameters:
  parameterIndex - the first parameter is 1, the second is 2, ...
Parameters:
  x - the java input stream which contains the binary parameter value
throws:
  SQLException - if a database access error occurs or this method iscalled on a closed PreparedStatement



setBinaryStream
final public void setBinaryStream(int parameterIndex, InputStream x, long length) throws SQLException(Code)
Sets the designated parameter to the given input stream, which will have the specified number of bytes.
Parameters:
  parameterIndex - the first parameter is 1, the second is 2, ...
Parameters:
  x - the java input stream which contains the binary parameter value
Parameters:
  length - the number of bytes in the stream
exception:
  SQLException - thrown on failure.



setBlob
public void setBlob(int parameterIndex, InputStream inputStream, long length) throws SQLException(Code)



setBlob
final public void setBlob(int parameterIndex, InputStream inputStream) throws SQLException(Code)
Sets the designated parameter to a InputStream object. This method differs from the setBinaryStream(int, InputStream) method because it informs the driver that the parameter value should be sent to the server as a BLOB.
Parameters:
  inputStream - an object that contains the data to set the parametervalue to.
throws:
  SQLException - if a database access error occurs, this method iscalled on a closed PreparedStatement



setCharacterStream
final public void setCharacterStream(int parameterIndex, Reader reader) throws SQLException(Code)
Sets the designated parameter to the given Reader object.
Parameters:
  parameterIndex - the first parameter is 1, the second is 2, ...
Parameters:
  reader - the java.io.Reader object that contains theUnicode data
throws:
  SQLException - if a database access error occurs or this method iscalled on a closed PreparedStatement



setCharacterStream
final public void setCharacterStream(int parameterIndex, Reader x, long length) throws SQLException(Code)
Sets the designated parameter to the given Reader, which will have the specified number of bytes.
Parameters:
  parameterIndex - the first parameter is 1, the second is 2, ...
Parameters:
  x - the java Reader which contains the UNICODE value
Parameters:
  length - the number of bytes in the stream
exception:
  SQLException - thrown on failure.



setClob
public void setClob(int parameterIndex, Reader reader, long length) throws SQLException(Code)



setClob
final public void setClob(int parameterIndex, Reader reader) throws SQLException(Code)
Sets the designated parameter to a Reader object. This method differs from the setCharacterStream(int,Reader) method because it informs the driver that the parameter value should be sent to the server as a CLOB.
Parameters:
  parameterIndex - the first parameter is 1, the second is 2, ...
Parameters:
  reader - an object that contains the data to set the parametervalue to.
throws:
  SQLException - if a database access error occurs, this method iscalled on a closed PreparedStatement



setNCharacterStream
public void setNCharacterStream(int parameterIndex, Reader value) throws SQLException(Code)



setNCharacterStream
public void setNCharacterStream(int index, Reader value, long length) throws SQLException(Code)



setNClob
public void setNClob(int index, NClob value) throws SQLException(Code)



setNClob
final public void setNClob(int parameterIndex, Reader reader) throws SQLException(Code)



setNClob
public void setNClob(int parameterIndex, Reader reader, long length) throws SQLException(Code)



setNString
public void setNString(int index, String value) throws SQLException(Code)



setPoolable
public void setPoolable(boolean poolable) throws SQLException(Code)
Forwards to the real PreparedStatement.
Parameters:
  poolable - the new value for the poolable hint.
throws:
  SQLException - if the forwarding call fails.



setRowId
public void setRowId(int parameterIndex, RowId x) throws SQLException(Code)



setSQLXML
public void setSQLXML(int parameterIndex, SQLXML xmlObject) throws SQLException(Code)



unwrap
public T unwrap(java.lang.Class<T> interfaces) throws SQLException(Code)
Returns this if this class implements the interface
Parameters:
  interfaces - a Class defining an interface an object that implements the interface
throws:
  java.sql.SQLExption - if no object if found that implements the interface



Methods inherited from org.apache.derby.iapi.jdbc.BrokeredPreparedStatement30
public PreparedStatement createDuplicateStatement(Connection conn, PreparedStatement oldStatement) throws SQLException(Code)(Java Doc)
final public ParameterMetaData getParameterMetaData() throws SQLException(Code)(Java Doc)
final public void setURL(int i, URL x) throws SQLException(Code)(Java Doc)

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.