qt-percona-server

Qt SQL Database Driver plugin for Percona Server MySQL

brewmacoslinux
Try with needOr install directly
Source

About

Qt SQL Database Driver

Commands

qsqlperconaserver

Examples

Load the Percona Server driver in a Qt application$ QSqlDatabase db = QSqlDatabase::addDatabase("QPERCONASERVER");
Connect to a Percona Server database with Qt$ db.setHostName("localhost"); db.setDatabaseName("mydb"); db.setUserName("user"); db.open();
List available SQL drivers including Percona Server$ qDebug() << QSqlDatabase::drivers();