Java Doc for EmbedCallableStatement20.java in  » Database-DBMS » db-derby-10.2 » org » apache » derby » impl » 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.impl.jdbc 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.derby.impl.jdbc.ConnectionChild
      org.apache.derby.impl.jdbc.EmbedStatement
         org.apache.derby.impl.jdbc.EmbedPreparedStatement
            org.apache.derby.impl.jdbc.EmbedCallableStatement
               org.apache.derby.impl.jdbc.EmbedCallableStatement20

All known Subclasses:   org.apache.derby.impl.jdbc.EmbedCallableStatement30,
EmbedCallableStatement20
public class EmbedCallableStatement20 extends org.apache.derby.impl.jdbc.EmbedCallableStatement (Code)
This class extends the EmbedCallableStatement class in order to support new methods and classes that come with JDBC 2.0.
See Also:   org.apache.derby.impl.jdbc.EmbedCallableStatement
author:
   francois



Constructor Summary
public  EmbedCallableStatement20(EmbedConnection conn, String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability)
    

Method Summary
public  ArraygetArray(int i)
     JDBC 2.0 Get an Array OUT parameter.
Parameters:
  i - the first parameter is 1, the second is 2, ...
public  ArraygetArray(String parameterName)
     JDBC 3.0 Retrieves the value of a JDBC ARRAY parameter as an Array object in the Java programming language.
public  BigDecimalgetBigDecimal(int parameterIndex)
     JDBC 2.0 Get the value of a NUMERIC parameter as a java.math.BigDecimal object.
Parameters:
  parameterIndex - the first parameter is 1, the second is 2, ...
public  BigDecimalgetBigDecimal(String parameterName)
     JDBC 3.0 Retrieves the value of a JDBC NUMERIC parameter as a java.math.BigDecimal object with as many digits to the right of the decimal point as the value contains
Parameters:
  parameterName - - the name of the parameter the parameter value.
final public  BigDecimalgetBigDecimal(int parameterIndex, int scale)
    
public  BlobgetBlob(String parameterName)
     JDBC 3.0 Retrieves the value of a JDBC BLOB parameter as a Blob object in the Java programming language.
public  booleangetBoolean(String parameterName)
     JDBC 3.0 Retrieves the value of a JDBC BIT parameter as a boolean in the Java programming language.
Parameters:
  parameterName - - the name of the parameter the parameter value.
public  bytegetByte(String parameterName)
     JDBC 3.0 Retrieves the value of a JDBC TINYINT parameter as a byte in the Java programming language.
Parameters:
  parameterName - - the name of the parameter the parameter value.
public  byte[]getBytes(String parameterName)
     JDBC 3.0 Retrieves the value of a JDBC BINARY or VARBINARY parameter as an array of byte values in the Java programming language.
Parameters:
  parameterName - - the name of the parameter the parameter value.
public  ReadergetCharacterStream(int parameterIndex)
     Retrieves the value of the designated parameter as a java.io.Reader object in the Java programming language. Introduced in JDBC 4.0.
Parameters:
  parameterIndex - the first parameter is 1, the second is 2, ...
public  ClobgetClob(String parameterName)
     JDBC 3.0 Retrieves the value of a JDBC CLOB parameter as a Clob object in the Java programming language.
public  DategetDate(String parameterName)
     JDBC 3.0 Retrieves the value of a JDBC DATE parameter as ajava.sql.Date object
Parameters:
  parameterName - - the name of the parameter the parameter value.
public  DategetDate(String parameterName, Calendar cal)
     JDBC 3.0 Retrieves the value of a JDBC DATE parameter as a java.sql.Date object, using the given Calendar object to construct the date object.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  cal - - the Calendar object the driver will use to construct the date the parameter value.
public  doublegetDouble(String parameterName)
     JDBC 3.0 Retrieves the value of a JDBC DOUBLE parameter as a double in the Java programming language.
Parameters:
  parameterName - - the name of the parameter the parameter value.
public  floatgetFloat(String parameterName)
     JDBC 3.0 Retrieves the value of a JDBC FLOAT parameter as a float in the Java programming language.
Parameters:
  parameterName - - the name of the parameter the parameter value.
public  intgetInt(String parameterName)
     JDBC 3.0 Retrieves the value of a JDBC INTEGER parameter as a int in the Java programming language.
Parameters:
  parameterName - - the name of the parameter the parameter value.
public  longgetLong(String parameterName)
     JDBC 3.0 Retrieves the value of a JDBC BIGINT parameter as a long in the Java programming language.
Parameters:
  parameterName - - the name of the parameter the parameter value.
public  ObjectgetObject(int i, java.util.Map map)
     JDBC 2.0 Returns an object representing the value of OUT parameter @i.
public  ObjectgetObject(String parameterName)
     JDBC 3.0 Retrieves the value of a parameter as an Object in the java programming language.
public  ObjectgetObject(String parameterName, Map map)
     JDBC 3.0 Returns an object representing the value of OUT parameter i and uses map for the custom mapping of the parameter value.
public  RefgetRef(int i)
     JDBC 2.0 Get a REF(<structured-type>) OUT parameter.
Parameters:
  i - the first parameter is 1, the second is 2, ...
public  RefgetRef(String parameterName)
     JDBC 3.0 Retrieves the value of a JDBC REF (
public  shortgetShort(String parameterName)
     JDBC 3.0 Retrieves the value of a JDBC SMALLINT parameter as a short in the Java programming language.
Parameters:
  parameterName - - the name of the parameter the parameter value.
public  StringgetString(String parameterName)
     JDBC 3.0 Retrieves the value of a JDBC CHAR, VARCHAR, or LONGVARCHAR parameter as a String in the Java programming language.
Parameters:
  parameterName - - the name of the parameter the parameter value.
public  TimegetTime(String parameterName)
     JDBC 3.0 Retrieves the value of a JDBC TIME parameter as ajava.sql.Time object
Parameters:
  parameterName - - the name of the parameter the parameter value.
public  TimegetTime(String parameterName, Calendar cal)
     JDBC 3.0 Retrieves the value of a JDBC TIME parameter as a java.sql.Time object, using the given Calendar object to construct the time object.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  cal - - the Calendar object the driver will use to construct the time the parameter value.
public  TimestampgetTimestamp(String parameterName)
     JDBC 3.0 Retrieves the value of a JDBC TIMESTAMP parameter as a java.sql.Timestamp object
Parameters:
  parameterName - - the name of the parameter the parameter value.
public  TimestampgetTimestamp(String parameterName, Calendar cal)
     JDBC 3.0 Retrieves the value of a JDBC TIMESTAMP parameter as a java.sql.Timestamp object, using the given Calendar object to construct the Timestamp object.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  cal - - the Calendar object the driver will use to construct the Timestamp the parameter value.
public  voidregisterOutParameter(String parameterName, int sqlType)
     JDBC 3.0 Registers the OUT parameter named parameterName to the JDBC type sqlType. All OUT parameters must be registered before a stored procedure is executed.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  sqlType - - the JDBC type code defined by java.sql.Types.
public  voidregisterOutParameter(String parameterName, int sqlType, String typeName)
     JDBC 3.0 Registers the designated output parameter.
public  voidregisterOutParameter(String parameterName, int sqlType, int scale)
     JDBC 3.0 Registers the parameter named parameterName to the JDBC type sqlType.
public  voidsetArray(int i, Array x)
     JDBC 2.0 Set an Array parameter.
public  voidsetAsciiStream(String parameterName, InputStream x, int length)
     JDBC 3.0 Sets the designated parameter to the given input stream, which will have the specified number of bytes.
public  voidsetBigDecimal(String parameterName, BigDecimal x)
     JDBC 3.0 Sets the designated parameter to the given java.math.BigDecimal value.
final public  voidsetBigDecimal(int parameterIndex, BigDecimal x)
     Set a parameter to a java.lang.BigDecimal value.
public  voidsetBinaryStream(String parameterName, InputStream x, int length)
     JDBC 3.0 Sets the designated parameter to the given input stream, which will have the specified number of bytes.
public  voidsetBoolean(String parameterName, boolean x)
     JDBC 3.0 Sets the designated parameter to the given Java boolean value.
public  voidsetByte(String parameterName, byte x)
     JDBC 3.0 Sets the designated parameter to the given Java byte value.
public  voidsetBytes(String parameterName, byte[] x)
     JDBC 3.0 Sets the designated parameter to the given Java array of bytes.
public  voidsetCharacterStream(String parameterName, Reader reader, int length)
     JDBC 3.0 Sets the designated parameter to the given Reader object, which is the given number of characters long.
public  voidsetDate(String parameterName, Date x)
     JDBC 3.0 Sets the designated parameter to the given java.sql.Date value.
public  voidsetDate(String parameterName, Date x, Calendar cal)
     JDBC 3.0 Sets the designated parameter to the given java.sql.Date value, using the given Calendar object.
public  voidsetDouble(String parameterName, double x)
     JDBC 3.0 Sets the designated parameter to the given Java double value.
public  voidsetFloat(String parameterName, float x)
     JDBC 3.0 Sets the designated parameter to the given Java float value.
public  voidsetInt(String parameterName, int x)
     JDBC 3.0 Sets the designated parameter to the given Java int value.
public  voidsetLong(String parameterName, long x)
     JDBC 3.0 Sets the designated parameter to the given Java long value.
public  voidsetNull(String parameterName, int sqlType)
     JDBC 3.0 Sets the designated parameter to SQL NULL.
public  voidsetNull(String parameterName, int sqlType, String typeName)
     JDBC 3.0 Sets the designated parameter to SQL NULL.
public  voidsetObject(String parameterName, Object x, int targetSqlType, int scale)
     JDBC 3.0 Sets the value of the designated parameter with the given object.
public  voidsetObject(String parameterName, Object x, int targetSqlType)
     JDBC 3.0 Sets the value of the designated parameter with the given object.
public  voidsetObject(String parameterName, Object x)
     JDBC 3.0 Sets the value of the designated parameter with the given object.
 booleansetObjectConvert(int parameterIndex, Object x)
     Allow explict setObject conversions by sub-classes for classes not supported by this variant.
public  voidsetRef(int i, Ref x)
     JDBC 2.0 Set a REF(<structured-type>) parameter.
public  voidsetShort(String parameterName, short x)
     JDBC 3.0 Sets the designated parameter to the given Java short value.
public  voidsetString(String parameterName, String x)
     JDBC 3.0 Sets the designated parameter to the given Java String value.
public  voidsetTime(String parameterName, Time x)
     JDBC 3.0 Sets the designated parameter to the given java.sql.Time value.
public  voidsetTime(String parameterName, Time x, Calendar cal)
    
public  voidsetTimestamp(String parameterName, Timestamp x)
     JDBC 3.0 Sets the designated parameter to the given java.sql.Timestamp value.
public  voidsetTimestamp(String parameterName, Timestamp x, Calendar cal)
    


Constructor Detail
EmbedCallableStatement20
public EmbedCallableStatement20(EmbedConnection conn, String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException(Code)




Method Detail
getArray
public Array getArray(int i) throws SQLException(Code)
JDBC 2.0 Get an Array OUT parameter.
Parameters:
  i - the first parameter is 1, the second is 2, ... an object representing an SQL array
exception:
  SQLException - if a database-access error occurs.



getArray
public Array getArray(String parameterName) throws SQLException(Code)
JDBC 3.0 Retrieves the value of a JDBC ARRAY parameter as an Array object in the Java programming language.
Parameters:
  parameterName - - the name of the parameter the parameter value as a Array object in the Java Programming language.If the value is SQL NULL, the result is null.
exception:
  SQLException - Feature not implemented for now.



getBigDecimal
public BigDecimal getBigDecimal(int parameterIndex) throws SQLException(Code)
JDBC 2.0 Get the value of a NUMERIC parameter as a java.math.BigDecimal object.
Parameters:
  parameterIndex - the first parameter is 1, the second is 2, ... the parameter value (full precision); if the value is SQL NULL, the result is null
exception:
  SQLException - if a database-access error occurs.



getBigDecimal
public BigDecimal getBigDecimal(String parameterName) throws SQLException(Code)
JDBC 3.0 Retrieves the value of a JDBC NUMERIC parameter as a java.math.BigDecimal object with as many digits to the right of the decimal point as the value contains
Parameters:
  parameterName - - the name of the parameter the parameter value. If the value is SQL NULL, the result is 0.
exception:
  SQLException - Feature not implemented for now.



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

See Also:   CallableStatement.getBigDecimal
exception:
  SQLException - NoOutputParameters thrown.



getBlob
public Blob getBlob(String parameterName) throws SQLException(Code)
JDBC 3.0 Retrieves the value of a JDBC BLOB parameter as a Blob object in the Java programming language.
Parameters:
  parameterName - - the name of the parameter the parameter value as a Blob object in the Java Programming language.If the value is SQL NULL, the result is null.
exception:
  SQLException - Feature not implemented for now.



getBoolean
public boolean getBoolean(String parameterName) throws SQLException(Code)
JDBC 3.0 Retrieves the value of a JDBC BIT parameter as a boolean in the Java programming language.
Parameters:
  parameterName - - the name of the parameter the parameter value. If the value is SQL NULL, the result is false.
exception:
  SQLException - Feature not implemented for now.



getByte
public byte getByte(String parameterName) throws SQLException(Code)
JDBC 3.0 Retrieves the value of a JDBC TINYINT parameter as a byte in the Java programming language.
Parameters:
  parameterName - - the name of the parameter the parameter value. If the value is SQL NULL, the result is 0.
exception:
  SQLException - Feature not implemented for now.



getBytes
public byte[] getBytes(String parameterName) throws SQLException(Code)
JDBC 3.0 Retrieves the value of a JDBC BINARY or VARBINARY parameter as an array of byte values in the Java programming language.
Parameters:
  parameterName - - the name of the parameter the parameter value. If the value is SQL NULL, the result is null.
exception:
  SQLException - Feature not implemented for now.



getCharacterStream
public Reader getCharacterStream(int parameterIndex) throws SQLException(Code)
Retrieves the value of the designated parameter as a java.io.Reader object in the Java programming language. Introduced in JDBC 4.0.
Parameters:
  parameterIndex - the first parameter is 1, the second is 2, ... a java.io.Reader object that contains the parametervalue; if the value is SQL NULL, the value returnedis null in the Java programming language.
throws:
  SQLException - if a database access error occurs or this method iscalled on a closed CallableStatement



getClob
public Clob getClob(String parameterName) throws SQLException(Code)
JDBC 3.0 Retrieves the value of a JDBC CLOB parameter as a Clob object in the Java programming language.
Parameters:
  parameterName - - the name of the parameter the parameter value as a Clob object in the Java Programming language.If the value is SQL NULL, the result is null.
exception:
  SQLException - Feature not implemented for now.



getDate
public Date getDate(String parameterName) throws SQLException(Code)
JDBC 3.0 Retrieves the value of a JDBC DATE parameter as ajava.sql.Date object
Parameters:
  parameterName - - the name of the parameter the parameter value. If the value is SQL NULL, the result is null.
exception:
  SQLException - Feature not implemented for now.



getDate
public Date getDate(String parameterName, Calendar cal) throws SQLException(Code)
JDBC 3.0 Retrieves the value of a JDBC DATE parameter as a java.sql.Date object, using the given Calendar object to construct the date object.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  cal - - the Calendar object the driver will use to construct the date the parameter value. If the value is SQL NULL, the result is null.
exception:
  SQLException - Feature not implemented for now.



getDouble
public double getDouble(String parameterName) throws SQLException(Code)
JDBC 3.0 Retrieves the value of a JDBC DOUBLE parameter as a double in the Java programming language.
Parameters:
  parameterName - - the name of the parameter the parameter value. If the value is SQL NULL, the result is 0.
exception:
  SQLException - Feature not implemented for now.



getFloat
public float getFloat(String parameterName) throws SQLException(Code)
JDBC 3.0 Retrieves the value of a JDBC FLOAT parameter as a float in the Java programming language.
Parameters:
  parameterName - - the name of the parameter the parameter value. If the value is SQL NULL, the result is 0.
exception:
  SQLException - Feature not implemented for now.



getInt
public int getInt(String parameterName) throws SQLException(Code)
JDBC 3.0 Retrieves the value of a JDBC INTEGER parameter as a int in the Java programming language.
Parameters:
  parameterName - - the name of the parameter the parameter value. If the value is SQL NULL, the result is 0.
exception:
  SQLException - Feature not implemented for now.



getLong
public long getLong(String parameterName) throws SQLException(Code)
JDBC 3.0 Retrieves the value of a JDBC BIGINT parameter as a long in the Java programming language.
Parameters:
  parameterName - - the name of the parameter the parameter value. If the value is SQL NULL, the result is 0.
exception:
  SQLException - Feature not implemented for now.



getObject
public Object getObject(int i, java.util.Map map) throws SQLException(Code)
JDBC 2.0 Returns an object representing the value of OUT parameter @i. Use the @map to determine the class from which to construct data of SQL structured and distinct types.
Parameters:
  i - the first parameter is 1, the second is 2, ...
Parameters:
  map - the mapping from SQL type names to Java classes a java.lang.Object holding the OUT parameter value.
exception:
  SQLException - if a database-access error occurs.



getObject
public Object getObject(String parameterName) throws SQLException(Code)
JDBC 3.0 Retrieves the value of a parameter as an Object in the java programming language.
Parameters:
  parameterName - - the name of the parameter a java.lang.Object holding the OUT parameter value
exception:
  SQLException - Feature not implemented for now.



getObject
public Object getObject(String parameterName, Map map) throws SQLException(Code)
JDBC 3.0 Returns an object representing the value of OUT parameter i and uses map for the custom mapping of the parameter value.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  map - - the mapping from SQL type names to Java classes a java.lang.Object holding the OUT parameter value
exception:
  SQLException - Feature not implemented for now.



getRef
public Ref getRef(int i) throws SQLException(Code)
JDBC 2.0 Get a REF(<structured-type>) OUT parameter.
Parameters:
  i - the first parameter is 1, the second is 2, ... an object representing data of an SQL REF Type
exception:
  SQLException - if a database-access error occurs.



getRef
public Ref getRef(String parameterName) throws SQLException(Code)
JDBC 3.0 Retrieves the value of a JDBC REF (Parameters:
  parameterName - - the name of the parameter the parameter value as a Ref object in the Java Programming language.If the value is SQL NULL, the result is null.
exception:
  SQLException - Feature not implemented for now.



getShort
public short getShort(String parameterName) throws SQLException(Code)
JDBC 3.0 Retrieves the value of a JDBC SMALLINT parameter as a short in the Java programming language.
Parameters:
  parameterName - - the name of the parameter the parameter value. If the value is SQL NULL, the result is 0.
exception:
  SQLException - Feature not implemented for now.



getString
public String getString(String parameterName) throws SQLException(Code)
JDBC 3.0 Retrieves the value of a JDBC CHAR, VARCHAR, or LONGVARCHAR parameter as a String in the Java programming language.
Parameters:
  parameterName - - the name of the parameter the parameter value. If the value is SQL NULL, the result is null.
exception:
  SQLException - Feature not implemented for now.



getTime
public Time getTime(String parameterName) throws SQLException(Code)
JDBC 3.0 Retrieves the value of a JDBC TIME parameter as ajava.sql.Time object
Parameters:
  parameterName - - the name of the parameter the parameter value. If the value is SQL NULL, the result is null.
exception:
  SQLException - Feature not implemented for now.



getTime
public Time getTime(String parameterName, Calendar cal) throws SQLException(Code)
JDBC 3.0 Retrieves the value of a JDBC TIME parameter as a java.sql.Time object, using the given Calendar object to construct the time object.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  cal - - the Calendar object the driver will use to construct the time the parameter value. If the value is SQL NULL, the result is null.
exception:
  SQLException - Feature not implemented for now.



getTimestamp
public Timestamp getTimestamp(String parameterName) throws SQLException(Code)
JDBC 3.0 Retrieves the value of a JDBC TIMESTAMP parameter as a java.sql.Timestamp object
Parameters:
  parameterName - - the name of the parameter the parameter value. If the value is SQL NULL, the result is null.
exception:
  SQLException - Feature not implemented for now.



getTimestamp
public Timestamp getTimestamp(String parameterName, Calendar cal) throws SQLException(Code)
JDBC 3.0 Retrieves the value of a JDBC TIMESTAMP parameter as a java.sql.Timestamp object, using the given Calendar object to construct the Timestamp object.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  cal - - the Calendar object the driver will use to construct the Timestamp the parameter value. If the value is SQL NULL, the result is null.
exception:
  SQLException - Feature not implemented for now.



registerOutParameter
public void registerOutParameter(String parameterName, int sqlType) throws SQLException(Code)
JDBC 3.0 Registers the OUT parameter named parameterName to the JDBC type sqlType. All OUT parameters must be registered before a stored procedure is executed.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  sqlType - - the JDBC type code defined by java.sql.Types. If theparameter is of JDBC type NUMERIC or DECIMAL, the version of registerOutParameterthat accepts a scale value should be used.
exception:
  SQLException - Feature not implemented for now.



registerOutParameter
public void registerOutParameter(String parameterName, int sqlType, String typeName) throws SQLException(Code)
JDBC 3.0 Registers the designated output parameter. This version of the method registerOutParameter should be used for a user-named or REF output parameter.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  sqlType - - the SQL type code defined by java.sql.Types.
Parameters:
  typeName - - the fully-qualified name of an SQL structure type
exception:
  SQLException - Feature not implemented for now.



registerOutParameter
public void registerOutParameter(String parameterName, int sqlType, int scale) throws SQLException(Code)
JDBC 3.0 Registers the parameter named parameterName to the JDBC type sqlType. This method must be called before a stored procedure is executed.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  sqlType - - the SQL type code defined by java.sql.Types.
Parameters:
  scale - - the desired number of digits to the right of the decimal point.It must be greater than or equal to zero.
exception:
  SQLException - Feature not implemented for now.



setArray
public void setArray(int i, Array x) throws SQLException(Code)
JDBC 2.0 Set an Array parameter.
Parameters:
  i - the first parameter is 1, the second is 2, ...
Parameters:
  x - an object representing an SQL array
exception:
  SQLException - Feature not implemented for now.



setAsciiStream
public void setAsciiStream(String parameterName, InputStream x, int length) throws SQLException(Code)
JDBC 3.0 Sets the designated parameter to the given input stream, which will have the specified number of bytes.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  x - - the Java input stream that contains the ASCII parameter value
Parameters:
  length - - the number of bytes in the stream
exception:
  SQLException - Feature not implemented for now.



setBigDecimal
public void setBigDecimal(String parameterName, BigDecimal x) throws SQLException(Code)
JDBC 3.0 Sets the designated parameter to the given java.math.BigDecimal value. The driver converts this to an SQL NUMERIC value when it sends it to the database.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  x - - the parameter value
exception:
  SQLException - Feature not implemented for now.



setBigDecimal
final public void setBigDecimal(int parameterIndex, BigDecimal x) throws SQLException(Code)
Set a parameter to a java.lang.BigDecimal value. The driver converts this to a SQL NUMERIC value when it sends it to the database.
Parameters:
  parameterIndex - the first parameter is 1, the second is 2, ...
Parameters:
  x - the parameter value
exception:
  SQLException - thrown on failure.



setBinaryStream
public void setBinaryStream(String parameterName, InputStream x, int length) throws SQLException(Code)
JDBC 3.0 Sets the designated parameter to the given input stream, which will have the specified number of bytes.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  x - - the Java input stream that contains the binary parameter value
Parameters:
  length - - the number of bytes in the stream
exception:
  SQLException - Feature not implemented for now.



setBoolean
public void setBoolean(String parameterName, boolean x) throws SQLException(Code)
JDBC 3.0 Sets the designated parameter to the given Java boolean value. The driver converts this to an SQL BIT value when it sends it to the database.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  x - - the parameter value
exception:
  SQLException - Feature not implemented for now.



setByte
public void setByte(String parameterName, byte x) throws SQLException(Code)
JDBC 3.0 Sets the designated parameter to the given Java byte value. The driver converts this to an SQL TINYINT value when it sends it to the database.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  x - - the parameter value
exception:
  SQLException - Feature not implemented for now.



setBytes
public void setBytes(String parameterName, byte[] x) throws SQLException(Code)
JDBC 3.0 Sets the designated parameter to the given Java array of bytes. The driver converts this to an SQL VARBINARY OR LONGVARBINARY (depending on the argument's size relative to the driver's limits on VARBINARY values)when it sends it to the database.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  x - - the parameter value
exception:
  SQLException - Feature not implemented for now.



setCharacterStream
public void setCharacterStream(String parameterName, Reader reader, int length) throws SQLException(Code)
JDBC 3.0 Sets the designated parameter to the given Reader object, which is the given number of characters long.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  reader - - the java.io.Reader object that contains the UNICODE data
Parameters:
  length - - the number of characters in the stream
exception:
  SQLException - Feature not implemented for now.



setDate
public void setDate(String parameterName, Date x) throws SQLException(Code)
JDBC 3.0 Sets the designated parameter to the given java.sql.Date value. The driver converts this to an SQL DATE value when it sends it to the database.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  x - - the parameter value
exception:
  SQLException - Feature not implemented for now.



setDate
public void setDate(String parameterName, Date x, Calendar cal) throws SQLException(Code)
JDBC 3.0 Sets the designated parameter to the given java.sql.Date value, using the given Calendar object.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  x - - the parameter value
Parameters:
  cal - - the Calendar object the driver will use to construct the date
exception:
  SQLException - Feature not implemented for now.



setDouble
public void setDouble(String parameterName, double x) throws SQLException(Code)
JDBC 3.0 Sets the designated parameter to the given Java double value. The driver converts this to an SQL DOUBLE value when it sends it to the database.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  x - - the parameter value
exception:
  SQLException - Feature not implemented for now.



setFloat
public void setFloat(String parameterName, float x) throws SQLException(Code)
JDBC 3.0 Sets the designated parameter to the given Java float value. The driver converts this to an SQL FLOAT value when it sends it to the database.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  x - - the parameter value
exception:
  SQLException - Feature not implemented for now.



setInt
public void setInt(String parameterName, int x) throws SQLException(Code)
JDBC 3.0 Sets the designated parameter to the given Java int value. The driver converts this to an SQL INTEGER value when it sends it to the database.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  x - - the parameter value
exception:
  SQLException - Feature not implemented for now.



setLong
public void setLong(String parameterName, long x) throws SQLException(Code)
JDBC 3.0 Sets the designated parameter to the given Java long value. The driver converts this to an SQL BIGINT value when it sends it to the database.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  x - - the parameter value
exception:
  SQLException - Feature not implemented for now.



setNull
public void setNull(String parameterName, int sqlType) throws SQLException(Code)
JDBC 3.0 Sets the designated parameter to SQL NULL.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  sqlType - - the SQL type code defined in java.sql.Types
exception:
  SQLException - Feature not implemented for now.



setNull
public void setNull(String parameterName, int sqlType, String typeName) throws SQLException(Code)
JDBC 3.0 Sets the designated parameter to SQL NULL.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  sqlType - - the SQL type code defined in java.sql.Types
Parameters:
  typeName - - the fully-qualified name of an SQL user-defined type
exception:
  SQLException - Feature not implemented for now.



setObject
public void setObject(String parameterName, Object x, int targetSqlType, int scale) throws SQLException(Code)
JDBC 3.0 Sets the value of the designated parameter with the given object. The second argument must be an object type; for integral values, the java.lang equivalent objects should be used.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  x - - the object containing the input parameter value
Parameters:
  targetSqlType - - the SQL type (as defined in java.sql.Types) to be sent tothe database. The scale argument may further qualify this type.
Parameters:
  scale - - for java.sql.Types.DECIMAL or java.sql.Types.NUMERIC types, thisis the number of digits after the decimal point. For all other types, this valuewill be ignored.
exception:
  SQLException - Feature not implemented for now.



setObject
public void setObject(String parameterName, Object x, int targetSqlType) throws SQLException(Code)
JDBC 3.0 Sets the value of the designated parameter with the given object. This method is like the method setObject above, except that it assumes a scale of zero.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  x - - the object containing the input parameter value
Parameters:
  targetSqlType - - the SQL type (as defined in java.sql.Types) to be sent tothe database.
exception:
  SQLException - Feature not implemented for now.



setObject
public void setObject(String parameterName, Object x) throws SQLException(Code)
JDBC 3.0 Sets the value of the designated parameter with the given object. The second parameter must be of type Object; therefore, the java.lang equivalent objects should be used for built-in types.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  x - - the object containing the input parameter value
exception:
  SQLException - Feature not implemented for now.



setObjectConvert
boolean setObjectConvert(int parameterIndex, Object x) throws SQLException(Code)
Allow explict setObject conversions by sub-classes for classes not supported by this variant. In this case handle BigDecimal. true if the object was set successfully, false if no validconversion exists.
exception:
  SQLException - value could not be set.



setRef
public void setRef(int i, Ref x) throws SQLException(Code)
JDBC 2.0 Set a REF(<structured-type>) parameter.
Parameters:
  i - the first parameter is 1, the second is 2, ...
Parameters:
  x - an object representing data of an SQL REF Type
exception:
  SQLException - Feature not implemented for now.



setShort
public void setShort(String parameterName, short x) throws SQLException(Code)
JDBC 3.0 Sets the designated parameter to the given Java short value. The driver converts this to an SQL SMALLINT value when it sends it to the database.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  x - - the parameter value
exception:
  SQLException - Feature not implemented for now.



setString
public void setString(String parameterName, String x) throws SQLException(Code)
JDBC 3.0 Sets the designated parameter to the given Java String value. The driver converts this to an SQL VARCHAR OR LONGVARCHAR value (depending on the argument's size relative the driver's limits on VARCHAR values) when it sends it to the database.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  x - - the parameter value
exception:
  SQLException - Feature not implemented for now.



setTime
public void setTime(String parameterName, Time x) throws SQLException(Code)
JDBC 3.0 Sets the designated parameter to the given java.sql.Time value. The driver converts this to an SQL TIME value when it sends it to the database.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  x - - the parameter value
exception:
  SQLException - Feature not implemented for now.



setTime
public void setTime(String parameterName, Time x, Calendar cal) throws SQLException(Code)
JDBC 3.0 Sets the designated parameter to the given java.sql.Time value using the Calendar object
Parameters:
  parameterName - - the name of the parameter
Parameters:
  x - - the parameter value
Parameters:
  cal - - the Calendar object the driver will use to construct the time
exception:
  SQLException - Feature not implemented for now.



setTimestamp
public void setTimestamp(String parameterName, Timestamp x) throws SQLException(Code)
JDBC 3.0 Sets the designated parameter to the given java.sql.Timestamp value. The driver converts this to an SQL TIMESTAMP value when it sends it to the database.
Parameters:
  parameterName - - the name of the parameter
Parameters:
  x - - the parameter value
exception:
  SQLException - Feature not implemented for now.



setTimestamp
public void setTimestamp(String parameterName, Timestamp x, Calendar cal) throws SQLException(Code)
JDBC 3.0 Sets the designated parameter to the given java.sql.Timestamp value, using the given Calendar object
Parameters:
  parameterName - - the name of the parameter
Parameters:
  x - - the parameter value
Parameters:
  cal - - the Calendar object the driver will use to construct the timestamp.
exception:
  SQLException - Feature not implemented for now.



Fields inherited from org.apache.derby.impl.jdbc.EmbedCallableStatement
protected boolean wasNull(Code)(Java Doc)

Methods inherited from org.apache.derby.impl.jdbc.EmbedCallableStatement
public void addBatch() throws SQLException(Code)(Java Doc)
protected void checkRequiresCallableStatement(Activation activation)(Code)(Java Doc)
final protected boolean executeStatement(Activation a, boolean executeQuery, boolean executeUpdate) throws SQLException(Code)(Java Doc)
public Blob getBlob(int i) throws SQLException(Code)(Java Doc)
public boolean getBoolean(int parameterIndex) throws SQLException(Code)(Java Doc)
public byte getByte(int parameterIndex) throws SQLException(Code)(Java Doc)
public byte[] getBytes(int parameterIndex) throws SQLException(Code)(Java Doc)
public Clob getClob(int i) throws SQLException(Code)(Java Doc)
public Date getDate(int parameterIndex) throws SQLException(Code)(Java Doc)
public java.sql.Date getDate(int parameterIndex, Calendar cal) throws SQLException(Code)(Java Doc)
public double getDouble(int parameterIndex) throws SQLException(Code)(Java Doc)
public float getFloat(int parameterIndex) throws SQLException(Code)(Java Doc)
public int getInt(int parameterIndex) throws SQLException(Code)(Java Doc)
public long getLong(int parameterIndex) throws SQLException(Code)(Java Doc)
final public Object getObject(int parameterIndex) throws SQLException(Code)(Java Doc)
public short getShort(int parameterIndex) throws SQLException(Code)(Java Doc)
public String getString(int parameterIndex) throws SQLException(Code)(Java Doc)
public Time getTime(int parameterIndex) throws SQLException(Code)(Java Doc)
public java.sql.Time getTime(int parameterIndex, Calendar cal) throws SQLException(Code)(Java Doc)
public Timestamp getTimestamp(int parameterIndex) throws SQLException(Code)(Java Doc)
public java.sql.Timestamp getTimestamp(int parameterIndex, Calendar cal) throws SQLException(Code)(Java Doc)
public URL getURL(int parameterIndex) throws SQLException(Code)(Java Doc)
public URL getURL(String parameterName) throws SQLException(Code)(Java Doc)
final public void registerOutParameter(int parameterIndex, int sqlType) throws SQLException(Code)(Java Doc)
final public void registerOutParameter(int parameterIndex, int sqlType, int scale) throws SQLException(Code)(Java Doc)
public void registerOutParameter(int parameterIndex, int sqlType, String typeName) throws SQLException(Code)(Java Doc)
public void setURL(String parameterName, URL val) throws SQLException(Code)(Java Doc)
public boolean wasNull() throws SQLException(Code)(Java Doc)

Fields inherited from org.apache.derby.impl.jdbc.EmbedPreparedStatement
protected PreparedStatement preparedStatement(Code)(Java Doc)
protected ResultSetMetaData rMetaData(Code)(Java Doc)

Methods inherited from org.apache.derby.impl.jdbc.EmbedPreparedStatement
final public void addBatch(String sql) throws SQLException(Code)(Java Doc)
public void addBatch() throws SQLException(Code)(Java Doc)
public void clearParameters() throws SQLException(Code)(Java Doc)
void closeActions() throws SQLException(Code)(Java Doc)
final SQLException dataTypeConversion(int column, String sourceType) throws SQLException(Code)(Java Doc)
final public boolean execute(String sql) throws SQLException(Code)(Java Doc)
final public boolean execute(String sql, int autoGenKeys) 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 boolean execute() throws SQLException(Code)(Java Doc)
boolean executeBatchElement(Object batchElement) throws SQLException, StandardException(Code)(Java Doc)
final public java.sql.ResultSet executeQuery(String sql) throws SQLException(Code)(Java Doc)
final public java.sql.ResultSet executeQuery() throws SQLException(Code)(Java Doc)
boolean executeStatement(Activation a, boolean executeQuery, boolean executeUpdate) throws SQLException(Code)(Java Doc)
final public int executeUpdate(String sql) throws SQLException(Code)(Java Doc)
final public int executeUpdate(String sql, int autoGenKeys) 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 int executeUpdate() throws SQLException(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
public EngineParameterMetaData getEmbedParameterSetMetaData() throws SQLException(Code)(Java Doc)
public java.sql.ResultSetMetaData getMetaData() throws SQLException(Code)(Java Doc)
protected int getParameterJDBCType(int parameterIndex) throws SQLException(Code)(Java Doc)
final protected String getParameterSQLType(int parameterIndex) throws SQLException(Code)(Java Doc)
final public ParameterValueSet getParms()(Code)(Java Doc)
final protected DataTypeDescriptor[] getTypes(int parameterIndex) throws SQLException(Code)(Java Doc)
protected EmbedResultSetMetaData newEmbedResultSetMetaData(ResultDescription resultDesc)(Code)(Java Doc)
final public void setAsciiStream(int parameterIndex, InputStream x, long length) throws SQLException(Code)(Java Doc)
final public void setAsciiStream(int parameterIndex, InputStream x, int length) throws SQLException(Code)(Java Doc)
public void setAsciiStream(int parameterIndex, InputStream x) throws SQLException(Code)(Java Doc)
public void setBinaryStream(int parameterIndex, InputStream x) throws SQLException(Code)(Java Doc)
final public void setBinaryStream(int parameterIndex, InputStream x, long length) throws SQLException(Code)(Java Doc)
final public void setBinaryStream(int parameterIndex, InputStream x, int length) throws SQLException(Code)(Java Doc)
public void setBlob(int i, Blob x) throws SQLException(Code)(Java Doc)
public void setBlob(int parameterIndex, InputStream inputStream) throws SQLException(Code)(Java Doc)
public void setBlob(int parameterIndex, InputStream inputStream, long length) throws SQLException(Code)(Java Doc)
public void setBoolean(int parameterIndex, boolean x) throws SQLException(Code)(Java Doc)
public void setBrokeredConnectionControl(BrokeredConnectionControl control)(Code)(Java Doc)
public void setByte(int parameterIndex, byte x) throws SQLException(Code)(Java Doc)
public void setBytes(int parameterIndex, byte x) throws SQLException(Code)(Java Doc)
final public void setCharacterStream(int parameterIndex, java.io.Reader reader, long length) throws SQLException(Code)(Java Doc)
final public void setCharacterStream(int parameterIndex, java.io.Reader reader, int length) throws SQLException(Code)(Java Doc)
public void setCharacterStream(int parameterIndex, Reader reader) throws SQLException(Code)(Java Doc)
public void setClob(int i, Clob x) throws SQLException(Code)(Java Doc)
public void setClob(int parameterIndex, Reader reader) throws SQLException(Code)(Java Doc)
public void setClob(int parameterIndex, Reader reader, long length) throws SQLException(Code)(Java Doc)
public void setDate(int parameterIndex, Date x) throws SQLException(Code)(Java Doc)
final public void setDate(int parameterIndex, java.sql.Date x, Calendar cal) throws SQLException(Code)(Java Doc)
public void setDouble(int parameterIndex, double x) throws SQLException(Code)(Java Doc)
public void setFloat(int parameterIndex, float x) throws SQLException(Code)(Java Doc)
public void setInt(int parameterIndex, int x) throws SQLException(Code)(Java Doc)
public void setLong(int parameterIndex, long x) throws SQLException(Code)(Java Doc)
public void setNull(int parameterIndex, int sqlType) throws SQLException(Code)(Java Doc)
public void setNull(int paramIndex, 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)
boolean setObjectConvert(int parameterIndex, Object x) throws SQLException(Code)(Java Doc)
public void setShort(int parameterIndex, short x) throws SQLException(Code)(Java Doc)
public void setString(int parameterIndex, String x) throws SQLException(Code)(Java Doc)
public void setTime(int parameterIndex, Time x) throws SQLException(Code)(Java Doc)
final public void setTime(int parameterIndex, java.sql.Time x, Calendar cal) throws SQLException(Code)(Java Doc)
public void setTimestamp(int parameterIndex, Timestamp x) throws SQLException(Code)(Java Doc)
final public void setTimestamp(int parameterIndex, java.sql.Timestamp x, Calendar cal) throws SQLException(Code)(Java Doc)
final public void setURL(int parameterIndex, java.net.URL x) throws SQLException(Code)(Java Doc)
public void setUnicodeStream(int parameterIndex, InputStream x, int length) throws SQLException(Code)(Java Doc)
public String toString()(Code)(Java Doc)
public void transferParameters(EmbedPreparedStatement newStatement) throws SQLException(Code)(Java Doc)

Fields inherited from org.apache.derby.impl.jdbc.EmbedStatement
int MaxFieldSize(Code)(Java Doc)
String SQLText(Code)(Java Doc)
protected EngineStatement applicationStatement(Code)(Java Doc)
Vector batchStatements(Code)(Java Doc)
protected boolean isPoolable(Code)(Java Doc)
final LanguageConnectionContext lcc(Code)(Java Doc)
int maxRows(Code)(Java Doc)
final int resultSetType(Code)(Java Doc)
java.sql.ResultSet results(Code)(Java Doc)
int updateCount(Code)(Java Doc)

Methods inherited from org.apache.derby.impl.jdbc.EmbedStatement
public void addBatch(String sql) throws SQLException(Code)(Java Doc)
final void addWarning(SQLWarning sw)(Code)(Java Doc)
public void cancel() throws SQLException(Code)(Java Doc)
final void checkExecStatus() throws SQLException(Code)(Java Doc)
final void checkIfInMiddleOfBatch() throws SQLException(Code)(Java Doc)
void checkRequiresCallableStatement(Activation activation) throws SQLException(Code)(Java Doc)
final void checkStatus() throws SQLException(Code)(Java Doc)
final public void clearBatch() throws SQLException(Code)(Java Doc)
void clearResultSets() throws SQLException(Code)(Java Doc)
public void clearWarnings() throws SQLException(Code)(Java Doc)
final public void close() throws SQLException(Code)(Java Doc)
void closeActions() throws SQLException(Code)(Java Doc)
public boolean execute(String sql) throws SQLException(Code)(Java Doc)
public boolean execute(String sql, int autoGeneratedKeys) throws SQLException(Code)(Java Doc)
public boolean execute(String sql, int[] columnIndexes) throws SQLException(Code)(Java Doc)
public boolean execute(String sql, String[] columnNames) throws SQLException(Code)(Java Doc)
public int[] executeBatch() throws SQLException(Code)(Java Doc)
boolean executeBatchElement(Object batchElement) throws SQLException, StandardException(Code)(Java Doc)
public java.sql.ResultSet executeQuery(String sql) throws SQLException(Code)(Java Doc)
boolean executeStatement(Activation a, boolean executeQuery, boolean executeUpdate) throws SQLException(Code)(Java Doc)
public int executeUpdate(String sql) throws SQLException(Code)(Java Doc)
public int executeUpdate(String sql, int autoGeneratedKeys) throws SQLException(Code)(Java Doc)
public int executeUpdate(String sql, int[] columnIndexes) throws SQLException(Code)(Java Doc)
public int executeUpdate(String sql, String[] columnNames) throws SQLException(Code)(Java Doc)
final public java.sql.Connection getConnection() throws SQLException(Code)(Java Doc)
public int getFetchDirection() throws SQLException(Code)(Java Doc)
public int getFetchSize() throws SQLException(Code)(Java Doc)
final public java.sql.ResultSet getGeneratedKeys() throws SQLException(Code)(Java Doc)
public int getMaxFieldSize() throws SQLException(Code)(Java Doc)
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)
public ParameterValueSet getParameterValueSet()(Code)(Java Doc)
final public int getQueryTimeout() throws SQLException(Code)(Java Doc)
final public java.sql.ResultSet getResultSet() throws SQLException(Code)(Java Doc)
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 String getSQLText()(Code)(Java Doc)
final public int getUpdateCount() throws SQLException(Code)(Java Doc)
public SQLWarning getWarnings() throws SQLException(Code)(Java Doc)
public boolean isClosed() throws SQLException(Code)(Java Doc)
public boolean isPoolable() throws SQLException(Code)(Java Doc)
void resultSetClosing(EmbedResultSet closingLRS) throws SQLException(Code)(Java Doc)
final public void setApplicationStatement(EngineStatement s)(Code)(Java Doc)
public void setCursorName(String name) throws SQLException(Code)(Java Doc)
public void setEscapeProcessing(boolean enable) throws SQLException(Code)(Java Doc)
public void setFetchDirection(int direction) throws SQLException(Code)(Java Doc)
public void setFetchSize(int rows) throws SQLException(Code)(Java Doc)
public void setMaxFieldSize(int max) throws SQLException(Code)(Java Doc)
public void setMaxRows(int max) throws SQLException(Code)(Java Doc)
public void setPoolable(boolean poolable) throws SQLException(Code)(Java Doc)
final public void setQueryTimeout(int seconds) throws SQLException(Code)(Java Doc)
public void transferBatch(EmbedStatement other) throws SQLException(Code)(Java Doc)

Fields inherited from org.apache.derby.impl.jdbc.ConnectionChild
final InternalDriver factory(Code)(Java Doc)
EmbedConnection localConn(Code)(Java Doc)

Methods inherited from org.apache.derby.impl.jdbc.ConnectionChild
final void commitIfAutoCommit() throws SQLException(Code)(Java Doc)
final void commitIfNeeded() throws SQLException(Code)(Java Doc)
java.util.Calendar getCal()(Code)(Java Doc)
final Object getConnectionSynchronization()(Code)(Java Doc)
final EmbedConnection getEmbedConnection()(Code)(Java Doc)
final SQLException handleException(Throwable t) throws SQLException(Code)(Java Doc)
final void needCommit()(Code)(Java Doc)
SQLException newSQLException(String messageId)(Code)(Java Doc)
SQLException newSQLException(String messageId, Object arg1)(Code)(Java Doc)
SQLException newSQLException(String messageId, Object arg1, Object arg2)(Code)(Java Doc)
final void restoreContextStack() throws SQLException(Code)(Java Doc)
final void setupContextStack() throws SQLException(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.