View | Details | Raw Unified
Collapse All | Expand All

(-) src/mysql_drv.c (+10 lines)
 Lines 2489-2494    Link Here 
    goto FAILURE;
    goto FAILURE;
  }
  }
#if MYSQL_VERSION_ID >= 50013
  /* enable automatic reconnect for MySQL >= 5.0.13 */
  snprintf(attrib, sizeof(attrib), "%sReconnect", prefix);
  if (_ds_match_attribute(CTX->config->attributes, attrib, "true"))
  {
      my_bool reconnect = 1;
      mysql_options(dbh, MYSQL_OPT_RECONNECT, &reconnect);
  }
#endif
  if (hostname[0] == '/')
  if (hostname[0] == '/')
  {
  {
    if (!mysql_real_connect (dbh, NULL, user, password, db, 0, hostname, 
    if (!mysql_real_connect (dbh, NULL, user, password, db, 0, hostname,