MySQL++  3.3.0
Macros | Functions
mysql++.h File Reference

The main MySQL++ header file. More...

#include "connection.h"
#include "cpool.h"
#include "query.h"
#include "scopedconnection.h"
#include "sql_types.h"
#include "transaction.h"

Go to the source code of this file.

Macros

#define MYSQLPP_VERSION(major, minor, bugfix)    (((major) << 16) | ((minor) << 8) | (bugfix))
 Encode MySQL++ library version number. More...
 
#define MYSQLPP_HEADER_VERSION   MYSQLPP_VERSION(3, 3, 0)
 Get the library version number that mysql++.h comes from. More...
 

Functions

unsigned int mysqlpp::get_library_version ()
 Get the current MySQL++ library version number. More...
 

Detailed Description

The main MySQL++ header file.

This file brings in all MySQL++ headers except for custom.h and custom-macros.h which are a strictly optional feature of MySQL++.

There is no point in trying to optimize which headers you include, because the MySQL++ headers are so intertwined. You can only get trivial compile time benefits, at the expense of clarity.

Macro Definition Documentation

◆ MYSQLPP_HEADER_VERSION

#define MYSQLPP_HEADER_VERSION   MYSQLPP_VERSION(3, 3, 0)

Get the library version number that mysql++.h comes from.

MySQL++ Version number that the mysql++.h header file comes from, encoded by MYSQLPP_VERSION macro. Compare this value to what get_library_version() returns in order to ensure that your program is using header files from the same version of MySQL++ as the actual library you're linking to.

◆ MYSQLPP_VERSION

#define MYSQLPP_VERSION (   major,
  minor,
  bugfix 
)     (((major) << 16) | ((minor) << 8) | (bugfix))

Encode MySQL++ library version number.

This macro takes major, minor and bugfix numbers (e.g. 1, 2, and 3) and encodes them like 0x010203.

Function Documentation

◆ get_library_version()

MYSQLPP_EXPORT unsigned int mysqlpp::get_library_version ( )

Get the current MySQL++ library version number.

MySQL++ version number that the program is actually linked to, encoded by MYSQLPP_VERSION macro. Compare this value to the MYSQLPP_HEADER_VERSION constant in order to ensure that your program is using header files from the same version of MySQL++ as the actual library you're linking to.