org.apache.derby.impl.jdbc

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 
org.apache.derby.impl.jdbc
Java Source File NameTypeComment
BinaryToRawStream.javaClass Converts a stream containing the Cloudscape stored binary form to one that just contains the application's data.
ConnectionChild.javaClass Any class in the embedded JDBC driver (ie this package) that needs to refer back to the EmbedConnection object extends this class.
EmbedBlob.javaClass Implements java.sql.Blob (see the JDBC 2.0 spec). A blob sits on top of a BINARY, VARBINARY or LONG VARBINARY column. If its data is small (less than 1 page) it is a byte array taken from the SQLBit class.
EmbedCallableStatement.javaClass Local implementation.
EmbedCallableStatement169.javaClass CallableStatement implementation for JSR169. Adds no functionality to its (abstract) parent class. If Derby could be compiled against JSR169 that the parent class could be the concrete class for the environment. Just like for the JDBC 2.0 specific classes. Until that is possible (ie.
EmbedCallableStatement20.javaClass This class extends the EmbedCallableStatement class in order to support new methods and classes that come with JDBC 2.0.
EmbedCallableStatement30.javaClass This class extends the EmbedCallableStatement20 in order to support new methods and classes that come with JDBC 3.0.
EmbedCallableStatement40.javaClass
EmbedClob.javaClass Implements java.sql.Clob (see the JDBC 2.0 spec). A clob sits on top of a CHAR, VARCHAR or LONG VARCHAR column. If its data is small (less than 1 page) it is a byte array taken from the SQLChar class.
EmbedConnection.javaClass Local implementation of Connection for a JDBC driver in the same process as the database.

There is always a single root (parent) connection.

EmbedConnection30.javaClass This class extends the EmbedConnection20 class in order to support new methods and classes that come with JDBC 3.0.

Supports

  • JSR169 - Subsetting only removes getTypeMap and setTypeMap, which references java.util.Map which exists in Foundation and ee.miniumum.
EmbedConnection40.javaClass
EmbedConnectionContext.javaClass
EmbedDatabaseMetaData.javaClass This class provides information about the database as a whole.

Many of the methods here return lists of information in ResultSets. You can use the normal ResultSet methods such as getString and getInt to retrieve the data from these ResultSets.

EmbedDatabaseMetaData40.javaClass
EmbedParameterMetaData30.javaClass This class implements the ParameterMetaData interface from JDBC3.0 It provides the parameter meta data for callable & prepared statements But note that the bulk of it resides in its parent class.
EmbedParameterMetaData40.javaClass
EmbedParameterSetMetaData.javaClass This class immitates to implement the ParameterMetaData interface from JDBC3.0 We want to provide the functionality to JDKs before JDBC3.0.
EmbedPreparedStatement.javaClass EmbedPreparedStatement is a local JDBC statement.
EmbedPreparedStatement169.javaClass PreparedStatement implementation for JSR169. Adds no functionality to its (abstract) parent class. If Derby could be compiled against JSR169 that the parent class could be the concrete class for the environment. Just like for the JDBC 2.0 specific classes. Until that is possible (ie.
EmbedPreparedStatement20.javaClass This class extends the EmbedPreparedStatement class in order to support new methods and classes that come with JDBC 2.0.
EmbedPreparedStatement30.javaClass This class extends the EmbedPreparedStatement20 class in order to support new methods and classes that come with JDBC 3.0.
EmbedPreparedStatement40.javaClass
EmbedResultSet.javaClass A EmbedResultSet for results from the EmbedStatement family.
EmbedResultSet169.javaClass ResultSet implementation for JSR169. Adds no functionality to its (abstract) parent class. If Derby could be compiled against JSR169 that the parent class could be the concrete class for the environment. Just like for the JDBC 2.0 specific classes. Until that is possible (ie.
EmbedResultSet20.javaClass This class extends the EmbedResultSet class in order to support new methods and classes that come with JDBC 2.0.
EmbedResultSet40.javaClass JDBC 4 specific methods that cannot be implemented in superclasses and unimplemented JDBC 4 methods. In general, the implementations should be pushed to the superclasses.
EmbedResultSetMetaData.javaClass A ResultSetMetaData object can be used to find out about the types and properties of the columns in a ResultSet.
EmbedResultSetMetaData40.javaClass
EmbedSavepoint30.javaClass This class implements the Savepoint interface from JDBC3.0 This allows to set, release, or rollback a transaction to designated Savepoints.
EmbedSQLException.javaClass This class is what gets send over the wire in client/server configuration.
EmbedSQLWarning.javaClass This class understands the message protocol and looks up SQLExceptions based on keys, so that the Local JDBC driver's messages can be localized.
EmbedStatement.javaClass EmbedStatement is a local JDBC statement.
EmbedStatement40.javaClass
ReaderToAscii.javaClass ReaderToAscii converts Reader (with characters) to a stream of ASCII characters.
SQLExceptionFactory.javaClass
SQLExceptionFactory40.javaClass
TransactionResourceImpl.javaClass An instance of a TransactionResourceImpl is a bundle of things that connects a connection to the database - it is the transaction "context" in a generic sense.
UTF8Reader.javaClass
Util.javaClass This class understands the message protocol and looks up SQLExceptions based on keys, so that the Local JDBC driver's messages can be localized.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.