Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 709950
Collapse All | Expand All

(-)a/src/core-impl/storage/sql/mysql-shared/MySqlStorage.h (-2 / +1 lines)
Lines 28-35 Link Here
28
  #include <winsock2.h>
28
  #include <winsock2.h>
29
#endif
29
#endif
30
30
31
struct st_mysql;
31
typedef struct MYSQL MYSQL;
32
typedef struct st_mysql MYSQL;
33
32
34
/**
33
/**
35
 * Implements a SqlStorage using a MySQL backend
34
 * Implements a SqlStorage using a MySQL backend
(-)a/src/core-impl/storage/sql/mysqlserverstorage/MySqlServerStorage.cpp (-2 / +1 lines)
Lines 66-72 MySqlServerStorage::init( const QString &host, const QString &user, const QStrin Link Here
66
    }
66
    }
67
67
68
    //first here, the right way for >= 5.1.6
68
    //first here, the right way for >= 5.1.6
69
    my_bool reconnect = true;
69
    bool reconnect = true;
70
    if( mysql_options( m_db, MYSQL_OPT_RECONNECT, &reconnect ) )
70
    if( mysql_options( m_db, MYSQL_OPT_RECONNECT, &reconnect ) )
71
        reportError( "Asking for automatic reconnect did not succeed!" );
71
        reportError( "Asking for automatic reconnect did not succeed!" );
72
    else
72
    else
73
- 

Return to bug 709950