Changeset 1920

Show
Ignore:
Timestamp:
08/17/2007 06:39:03 AM (14 months ago)
Author:
glen
Message:

- set mysql reconnect to on. #1240

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/mod_mysql_vhost.c

    r1746 r1920  
    171171                                return HANDLER_ERROR; 
    172172                        } 
     173 
     174                        /* in mysql versions above 5.0.3 the reconnect flag is off by default */ 
     175                        my_bool reconnect = 1; 
     176                        mysql_options(s->mysql, MYSQL_OPT_RECONNECT, &reconnect); 
     177 
    173178#define FOO(x) (s->core->x->used ? s->core->x->ptr : NULL) 
    174179