I have a C application using the MySQL library for database access.
Is there a standard way to implement database connection pooling for such an application? The C connector doesn't appear to support it.
I have a C application using the MySQL library for database access.
Is there a standard way to implement database connection pooling for such an application? The C connector doesn't appear to support it.
SQL Relay looks like it can be used to do this, amongst many other useful things, such as
If the MySQL library is dynamically linked this can be done without recompiling the application.
However, the mailing list suggests SQL Relay may not be fully ready for production use.