com.mysql.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 JDBC Connection Pool » mysql connector java 5.1.3 » com.mysql.jdbc 
com.mysql.jdbc
Java Source File NameTypeComment
AssertionFailedException.javaClass Assertions for empty code paths that should never be executed.
Blob.javaClass The representation (mapping) in the JavaTM programming language of an SQL BLOB value.
BlobFromLocator.javaClass The representation (mapping) in the JavaTM programming language of an SQL BLOB value.
Buffer.javaClass Buffer contains code to read and write packets from/to the MySQL server.
BufferRow.javaClass A RowHolder implementation that holds one row packet (which is re-used by the driver, and thus saves memory allocations), and tries when possible to avoid allocations to break out the results as individual byte[]s.
ByteArrayRow.javaClass A RowHolder implementation that is for cached results (a-la mysql_store_result()).
CachedResultSetMetaData.javaClass
CallableStatement.javaClass
CharsetMapping.javaClass Mapping between MySQL charset names and Java charset names.
Clob.javaClass
CommunicationsException.javaClass An exception to represent communications errors with the database.
CompressedInputStream.javaClass Used to de-compress packets from the MySQL server when protocol-level compression is turned on.
Connection.javaInterface This interface contains methods that are considered the "vendor extension" to the JDBC API for MySQL's implementation of java.sql.Connection.
ConnectionFeatureNotAvailableException.javaClass Thrown when a client requests a connection-level feature that isn't available for this particular distribution of Connector/J (currently only used by code that is export-controlled).
ConnectionImpl.javaClass A Connection represents a session with a specific database.
ConnectionProperties.javaInterface
ConnectionPropertiesImpl.javaClass Represents configurable properties for Connections and DataSources.
ConnectionPropertiesTransform.javaInterface Implement this interface, and pass the class name as the 'propertiesTransform' property in your JDBC URL, and the driver will pass the properties it has parsed to your transform implementation so that you can modify/substitute/add any that you desire.
Constants.javaClass Represents various constants used in the driver.
DatabaseMetaData.javaClass JDBC Interface to Mysql functions

This class provides information about the database as a whole.

Many of the methods here return lists of information in ResultSets.

DatabaseMetaDataUsingInfoSchema.javaClass DatabaseMetaData implementation that uses INFORMATION_SCHEMA available in MySQL-5.0 and newer.
DocsConnectionPropsHelper.javaClass
Driver.javaClass The Java SQL framework allows for multiple database drivers.
EscapeProcessor.javaClass
EscapeProcessorResult.javaClass Wraps output from EscapeProcessor, to help prevent multiple passes over the query string, to detect characters such as '@' (defining/using a variable), which are used further up the call stack to handle failover.
EscapeTokenizer.javaClass EscapeTokenizer breaks up an SQL statement into SQL and escape code parts.
ExportControlled.javaClass Holds functionality that falls under export-control regulations.
Field.javaClass
JDBC4CallableStatement.javaClass
JDBC4ClientInfoProvider.javaInterface Classes that implement this interface and provide a no-args constructor can be used by the driver to store and retrieve client information and/or labels. The driver will create an instance for each Connection instance, and call initialize() once and only once.
JDBC4ClientInfoProviderSP.javaClass
JDBC4CommentClientInfoProvider.javaClass An implementation of JDBC4ClientInfoProvider that exposes the client info as a comment prepended to all statements issued by the driver.
JDBC4Connection.javaClass
JDBC4DatabaseMetaData.javaClass
JDBC4DatabaseMetaDataUsingInfoSchema.javaClass
JDBC4MysqlSQLXML.javaClass
JDBC4NClob.javaClass
JDBC4PreparedStatement.javaClass
JDBC4PreparedStatementHelper.javaClass
JDBC4ResultSet.javaClass
JDBC4ServerPreparedStatement.javaClass
JDBC4UpdatableResultSet.javaClass
LicenseConfiguration.javaClass Used in commercially-licensed clients that require connections to commercially-licensed servers as part of the licensing terms.
LoadBalancingConnectionProxy.javaClass An implementation of java.sql.Connection that load balances requests across a series of MySQL JDBC connections, where the balancing takes place at transaction commit. Therefore, for this to work (at all), you must use transactions, even if only reading data. This implementation will invalidate connections that it detects have had communication errors when processing a request.
Messages.javaClass Support for localized messages.
MiniAdmin.javaClass Utility functions for admin functionality from Java.
MysqlDataTruncation.javaClass MySQL wrapper for DataTruncation until the server can support sending all needed information.
MysqlDefs.javaClass MysqlDefs contains many values that are needed for communication with the MySQL server.
MysqlErrorNumbers.javaClass Constants representing MySQL error numbers returned by the server in error messages.
MysqlIO.javaClass This class is used by Connection for communicating with the MySQL server.
MysqlParameterMetadata.javaClass
MysqlSavepoint.javaClass Represents SQL SAVEPOINTS in MySQL.
NamedPipeSocketFactory.javaClass
NonRegisteringDriver.javaClass The Java SQL framework allows for multiple database drivers.
NonRegisteringReplicationDriver.javaClass Driver that opens two connections, one two a replication master, and another to one or more slaves, and decides to use master when the connection is not read-only, and use slave(s) when the connection is read-only.
NotImplemented.javaClass Thrown from methods not required to be implemented.
NotUpdatable.javaClass
OperationNotSupportedException.javaClass
OutputStreamWatcher.javaInterface Objects that want to be notified of lifecycle events on a WatchableOutputStream should implement this interface, and register themselves with setWatcher() on the WatchableOutputStream instance.
PacketTooBigException.javaClass Thrown when a packet that is too big for the server is created.
ParameterBindings.javaInterface Interface to allow PreparedStatement implementations to expose their parameter bindings to StatementInterceptors.
PingTarget.javaInterface
PreparedStatement.javaClass A SQL Statement is pre-compiled and stored in a PreparedStatement object.
ReplicationConnection.javaClass Connection that opens two connections, one two a replication master, and another to one or more slaves, and decides to use master when the connection is not read-only, and use slave(s) when the connection is read-only.
ReplicationDriver.javaClass The Java SQL framework allows for multiple database drivers.
ResultSetImpl.javaClass A ResultSet provides access to a table of data generated by executing a Statement.
ResultSetInternalMethods.javaInterface This interface is intended to be used by implementors of statement interceptors so that implementors can create static or dynamic (via java.lang.reflect.Proxy) proxy instances of ResultSets.
ResultSetMetaData.javaClass
ResultSetRow.javaClass Classes that implement this interface represent one row of data from the MySQL server that might be stored in different ways depending on whether the result set was streaming (so they wrap a reusable packet), or whether the result set was cached or via a server-side cursor (so they represent a byte[][]).
RowData.javaInterface This interface abstracts away how row data is accessed by the result set.
RowDataCursor.javaClass Model for result set data backed by a cursor.
RowDataDynamic.javaClass Allows streaming of MySQL data.
RowDataKeyset.javaClass
RowDataStatic.javaClass
Security.javaClass Methods for doing secure authentication with MySQL-4.1 and newer.
ServerPreparedStatement.javaClass JDBC Interface for MySQL-4.1 and newer server-side PreparedStatements.
SingleByteCharsetConverter.javaClass Converter for char[]->byte[] and byte[]->char[] for single-byte character sets.
SocketFactory.javaInterface
SQLError.javaClass SQLError is a utility class that maps MySQL error codes to X/Open error codes as is required by the JDBC spec.
StandardSocketFactory.javaClass
Statement.javaInterface This interface contains methods that are considered the "vendor extension" to the JDBC API for MySQL's implementation of java.sql.Statement.
StatementImpl.javaClass A Statement object is used for executing a static SQL statement and obtaining the results produced by it.

Only one ResultSet per Statement can be open at any point in time.

StatementInterceptor.javaInterface Implement this interface to be placed "in between" query execution, so that you can influence it.
StreamingNotifiable.javaInterface
StringUtils.javaClass
TimeUtil.javaClass
UpdatableResultSet.javaClass A result set that is updatable.
Util.javaClass Various utility methods for the driver.
WatchableOutputStream.javaClass
WatchableWriter.javaClass
WriterWatcher.javaInterface Objects that want to be notified of lifecycle events on a WatchableWriter should implement this interface, and register themselves with setWatcher() on the WatchableWriter instance.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.