~ubuntu-branches/ubuntu/quantal/mysql-workbench/quantal

« back to all changes in this revision

Viewing changes to ext/cppconn/driver/mysql_public_iface.h

  • Committer: Package Import Robot
  • Author(s): Dmitry Smirnov
  • Date: 2012-03-01 21:57:30 UTC
  • Revision ID: package-import@ubuntu.com-20120301215730-o7y8av8y38n162ro
Tags: upstream-5.2.38+dfsg
ImportĀ upstreamĀ versionĀ 5.2.38+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved.
 
3
 
 
4
The MySQL Connector/C++ is licensed under the terms of the GPLv2
 
5
<http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>, like most
 
6
MySQL Connectors. There are special exceptions to the terms and
 
7
conditions of the GPLv2 as it is applied to this software, see the
 
8
FLOSS License Exception
 
9
<http://www.mysql.com/about/legal/licensing/foss-exception.html>.
 
10
 
 
11
This program is free software; you can redistribute it and/or modify
 
12
it under the terms of the GNU General Public License as published
 
13
by the Free Software Foundation; version 2 of the License.
 
14
 
 
15
This program is distributed in the hope that it will be useful, but
 
16
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 
17
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
 
18
for more details.
 
19
 
 
20
You should have received a copy of the GNU General Public License along
 
21
with this program; if not, write to the Free Software Foundation, Inc.,
 
22
51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA
 
23
*/
 
24
 
 
25
 
 
26
 
 
27
/*
 
28
  Public interface of the MySQL Connector/C++.
 
29
  You might not use it but directly include directly the different
 
30
  headers from cppconn/ and mysql_driver.h + mysql_util.h
 
31
  (and mysql_connection.h). This will reduce your build time!
 
32
*/
 
33
 
 
34
#ifndef MYSQL_PUBLIC_IFACE_H_
 
35
#define MYSQL_PUBLIC_IFACE_H_
 
36
#include <cppconn/driver.h>
 
37
#include <cppconn/exception.h>
 
38
#include <cppconn/warning.h>
 
39
#include <cppconn/metadata.h>
 
40
#include <cppconn/prepared_statement.h>
 
41
#include <cppconn/resultset.h>
 
42
#include <cppconn/resultset_metadata.h>
 
43
#include <cppconn/statement.h>
 
44
/*#include <cppconn/connection.h"*/
 
45
#include "mysql_driver.h"
 
46
#include "mysql_connection.h"
 
47
//#include <cppconn/types.h>
 
48
 
 
49
#endif /* MYSQL_PUBLIC_IFACE_H_ */