blob: 4e00826f863e4f8b8f29868e2615c5e8e3adfb82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/*!
* \file mg_database.h
* \brief A capsule around MySql database access
*
* \version $Revision: 1.2 $
* \date $Date: 2004/05/28 15:29:18 $
* \author Ralf Klueber, Lars von Wedel, Andreas Kellner
* \author Responsible author: $Author: lvw $
*/
#ifndef __MG_DATABASE_H
#define __MG_DATABASE_H
#include <string>
#include <mysql/mysql.h>
class mgDB
{
public:
/*! \brief default constructor
*/
mgDB( );
/*! \brief constructor
*
* \param host
* \param name
* \param user
* \param pass
* \param port
*/
mgDB( std::string host, std::string name,
std::string user, std::string pass,
int port );
/*! \brief constructor */
~mgDB();
/*! \brief obtain database handle*/
MYSQL getDBHandle();
private:
MYSQL m_dbase;
};
#endif
|