mysqlDb property

MySQLConnection get mysqlDb

Implementation

MySQLConnection get mysqlDb {
  if (_mysqlDb == null || !_mysqlDb!.connected) {
    connectMysqlDb();
  }
  return _mysqlDb!;
}