org.postgresql.core

Java Source Code / Java Documentation
1. JDK Core
2. JDK Modules
3. JDK Modules com.sun
4. JDK Modules com.sun.java
5. JDK Modules Platform
6. JDK Modules sun
7. Open Source Graphic Library
8. Open Source IDE Eclipse
9. Open Source J2EE
10. Open Source JBOSS
11. Open Source JDBC Driver
12. Open Source Library
13. Open Source Library Database
14. Open Source Net
15. Science
16. Sevlet Container
17. SUN GlassFish
18. Swing Library
19. Web Services apache cxf 2.0.1
20. Web Services AXIS2
21. XML
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Java Source Code / Java Documentation » Open Source JDBC Driver » postgresql » org.postgresql.core 
org.postgresql.core
Java Source File NameTypeComment
BaseConnection.javaInterface Driver-internal connection interface.
BaseResultSet.javaInterface Driver-internal resultset interface.
BaseStatement.javaInterface Driver-internal statement interface.
ConnectionFactory.javaClass Handles protocol-specific connection setup.
Encoding.javaClass Representation of a particular character encoding.
Field.javaClass
Logger.javaClass Poor man's logging infrastructure.
Notification.javaClass
Oid.javaClass Provides constants for well-known backend OIDs for the types we commonly use.
ParameterList.javaInterface Abstraction of a list of parameters to be substituted into a Query.
Parser.javaClass Basic query parser infrastructure.
PGBindException.javaClass
PGStream.javaClass Wrapper around the raw connection to the server that implements some basic primitives (reading/writing formatted data, doing string encoding, etc).
ProtocolConnection.javaInterface Provides access to protocol-level connection operations.
Query.javaInterface Abstraction of a generic Query, hiding the details of any protocol-version-specific data needed to execute the query efficiently.
QueryExecutor.javaInterface Abstracts the protocol-specific details of executing a query.

Every connection has a single QueryExecutor implementation associated with it. This object provides:

Query objects may represent a query that has parameter placeholders.

ResultCursor.javaInterface Abstraction of a cursor over a returned resultset.
ResultHandler.javaInterface Callback interface for passing query results from the protocol-specific layer to the protocol-independent JDBC implementation code.

In general, a single query execution will consist of a number of calls to handleResultRows, handleCommandStatus, handleWarning, and handleError, followed by a single call to handleCompletion when query execution is complete.

UTF8Encoding.javaClass
Utils.javaClass Collection of utilities used by the protocol-level code.
VisibleBufferedInputStream.javaClass A faster version of BufferedInputStream.
w__w_w__._ja__va_2__s___.___c_om
Home | Contact Us
Copyright 2003 - 07 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.