How MySQL DBA & support engineer would imagine 'mysqldump' ;-)
MySAC (Simple Asynchronous Client) is a library that provides mechanisms for
making asynchronous requests to MySQL database. It uses the official MySQL
client library for authentication and network functions. Memory allocation
must be done in user code, so any memory manager can be used.
MySQL++ is a C++ wrapper for MySQL's C API.
It is built around STL principles, to make dealing with
the database as easy as dealing with an STL container.
MySQL Connector/C++ is a MySQL database connector for C++ implementing a subset
of the JDBC 4.0 API. The MySQL Connector/C++ currently features the following
classes:
* Connection
* DatabaseMetaData
* Driver
* PreparedStatement
* ResultSet
* ResultSetMetaData
* Savepoint
* Statement
The JDBC 4.0 API defines approximately 450 methods for the above mentioned
classes. MySQL Connector/C++ implements around 80% of these and makes them
available in the current release.
This PHP extension provides a wrapper for libdrizzle, the
client and protocol library for the Drizzle database.
MySQL Proxy is a simple program that sits between your client and MySQL
server(s) that can monitor, analyze or transform their communication. Its
flexibility allows for a wide variety of uses, including load balancing;
failover; query analysis; query filtering and modification; and many more.
Q4M (Queue for MySQL) is a message queue licensed under GPL that works
as a pluggable storage engine of MySQL 5.1, designed to be robust,
fast, flexible. The development started in late December of 2007, and
although it is very primitive, operates quite swiftly.
This package adds several user-defined statistics functions
to the MySQL server providing the ability to:
* calculate the median of any values,
* calculate the skewness and kurtosis of a distribution of value
* retrieve the effective length of the longest value in a STRING column,
* get the longest value from a STRING column,
* calculate the faculty of a value,
* calculate linear regression parameters (intercept, slope, correlation
coefficent) of any values
The MySQL-ODBC SDK enables you to make MySQL-specific applications
database-independent without wholesale re-writes of your application code.
Thus, applications that are written directly to the MySQL call level interface
now end up being database independent via iODBC (or unixODBC), and usable
against any ODBC accessible database (including MySQL).