File: resultset_types.cpp

package info (click to toggle)
mysql-connector-c%2B%2B 1.1.12-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 4,904 kB
  • sloc: cpp: 44,895; ansic: 2,114; php: 528; sql: 403; xml: 109; sh: 33; makefile: 11
file content (240 lines) | stat: -rw-r--r-- 9,841 bytes parent folder | download | duplicates (2)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
/*
 * Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License, version 2.0, as
 * published by the Free Software Foundation.
 *
 * This program is also distributed with certain software (including
 * but not limited to OpenSSL) that is licensed under separate terms,
 * as designated in a particular file or component or in included license
 * documentation.  The authors of MySQL hereby grant you an
 * additional permission to link the program and your derivative works
 * with the separately licensed software that they have included with
 * MySQL.
 *
 * Without limiting anything contained in the foregoing, this file,
 * which is part of MySQL Connector/C++, is also subject to the
 * Universal FOSS Exception, version 1.0, a copy of which can be found at
 * http://oss.oracle.com/licenses/universal-foss-exception.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the GNU General Public License, version 2.0, for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA
 */



/* *
* Basic example demonstrating how to check the type of a result set column
*
*/

/* Standard C++ includes */
#include <stdlib.h>
#include <iostream>
#include <sstream>
#include <stdexcept>

#include <boost/scoped_ptr.hpp>

/* Public interface of the MySQL Connector/C++ */
#include <driver/mysql_public_iface.h>
/* Connection parameter and sample data */
#include "examples.h"

#ifdef _WIN32
#define L64(x) x##i64
#else
#define L64(x) x##LL
#endif

using namespace std;

int main(int argc, const char **argv)
{
  const string url(argc >= 2 ? argv[1] : EXAMPLE_HOST);
  const string user(argc >= 3 ? argv[2] : EXAMPLE_USER);
  const string pass(argc >= 4 ? argv[3] : EXAMPLE_PASS);
  const string database(argc >= 5 ? argv[4] : EXAMPLE_DB);

  /* Driver Manager */
  sql::Driver *driver;

  struct _test_data min, max;
  int c_int1;
  bool c_bool1 = true, c_bool2;
  /* TODO: long long is not C++, its C99 !!! */
  int64_t c_long1 = L64(9223372036854775807), c_long2;
  double c_double1 = -999.9999, c_double2;

  cout << boolalpha;
  cout << "1..1" << endl;
  cout << "# Connector/C++ result set.." << endl;

  try {
    /* Using the Driver to create a connection */
    driver = sql::mysql::get_driver_instance();
    boost::scoped_ptr< sql::Connection > con(driver->connect(url, user, pass));
    con->setSchema(database);

    boost::scoped_ptr< sql::Statement > stmt(con->createStatement());
    stmt->execute("DROP TABLE IF EXISTS test");

    /*
    Note that MySQL has its very own mapping from SQL type (e.g. BOOLEAN)
    specified in a SQL statement and type actually used. Check the MySQL
    manual - conversions are a common cause of false bug reports!
    Also, don't get confused by the precision of float/double columns.
    For precision math use DECIMAL!
    */
    stmt->execute("CREATE TABLE test(id INT, label CHAR(1), c_bool BOOLEAN, "
      "c_long BIGINT, c_double DOUBLE, c_null INT DEFAULT NULL)");
    cout << "#\t Test table created" << endl;

    boost::scoped_ptr< sql::PreparedStatement> prep_stmt(
      con->prepareStatement("INSERT INTO test(id, label, c_bool, c_long, "
        " c_double) VALUES (?, ?, ?, ?, ?)"));

    /* Populate the test table with data */
    min = max = test_data[0];
    for (unsigned int i = 0; i < EXAMPLE_NUM_TEST_ROWS; i++) {
      /* Remember min/max for further testing */
      if (test_data[i].id < min.id) {
        min = test_data[i];
      }
      if (test_data[i].id > max.id) {
        max = test_data[i];
      }

      prep_stmt->setInt(1, test_data[i].id);
      prep_stmt->setString(2, test_data[i].label);
      prep_stmt->setBoolean(3, c_bool1);
      prep_stmt->setInt64(4, c_long1);
      prep_stmt->setDouble(5, c_double1);
      prep_stmt->execute();
    }
    cout << "#\t Test table populated" << endl;

    boost::scoped_ptr< sql::ResultSet > res(stmt->executeQuery("SELECT id, label, c_bool, c_long, c_double, c_null FROM test ORDER BY id ASC"));
    while (res->next()) {
      /* sql::ResultSet.rowsCount() returns size_t */
      size_t row = res->getRow() - 1;

      cout << "#\t\t Row " << res->getRow() << endl;
      cout << "#\t\t\t id INT = " << res->getInt("id") << endl;
      cout << "#\t\t\t id (as Integer) = " << res->getInt("id") << endl;
      cout << "#\t\t\t id (as String) = " << res->getString("id") << endl;
      cout << "#\t\t\t id (as Boolean) = " << res->getBoolean("id") << endl;
      cout << "#\t\t\t id (as Long) = " << res->getInt64("id") << endl;
      cout << "#\t\t\t id (as Double) = " << res->getDouble("id") << endl;
      cout << "#" << endl;
      if (test_data[row].id != res->getInt(1)) {
        throw runtime_error("Wrong results for column id");
      }

      std::string c_string = res->getString(2);
      cout << "#\t\t\t label CHAR(1) = " << c_string << endl;
      cout << "#\t\t\t label (as Integer) = " << res->getInt(2) << endl;
      cout << "#\t\t\t label (as String) = " << res->getString(2) << endl;
      cout << "#\t\t\t label (as Boolean) = " << res->getBoolean(2) << endl;
      cout << "#\t\t\t label (as Long) = " << res->getInt64(2) << endl;
      cout << "#\t\t\t label (as Double) = " << res->getDouble(2) << endl;
      cout << "#" << endl;
      if (test_data[row].label != c_string) {
        throw runtime_error("Wrong result for column label");
      }

      c_bool2 = res->getBoolean("c_bool");
      cout << "#\t\t\t c_bool CHAR(1) = " << c_bool2 << endl;
      cout << "#\t\t\t c_bool (as Integer) = " << res->getInt(3) << endl;
      cout << "#\t\t\t c_bool (as String) = " << res->getString(3) << endl;
      cout << "#\t\t\t c_bool (as Boolean) = " << res->getBoolean(3) << endl;
      cout << "#\t\t\t c_bool (as Long) = " << res->getInt64(3) << endl;
      cout << "#\t\t\t c_bool (as Double) = " << res->getDouble(3) << endl;
      cout << "#" << endl;
      if (c_bool1 != c_bool2) {
        throw runtime_error("Wrong result for column c_bool");
      }

      c_long2 = res->getInt64("c_long");
      cout << "#\t\t\t c_long BIGINT = " << c_long2 << endl;
      cout << "#\t\t\t c_long (as Integer) = " << res->getInt("c_long") << endl;
      cout << "#\t\t\t c_long (as String) = " << res->getString("c_long") << endl;
      cout << "#\t\t\t c_long (as Boolean) = " << res->getBoolean("c_long") << endl;
      cout << "#\t\t\t c_long (as Long) = " << res->getInt64("c_long") << endl;
      cout << "#\t\t\t c_long (as Double) = " << res->getDouble("c_long") << endl;
      cout << "#" << endl;
      if (c_long1 != c_long2) {
        throw runtime_error("Wrong result for column c_long");
      }

      c_double2 = res->getDouble("c_double");
      cout << "#\t\t\t c_double DOUBLE = " << c_double2 << endl;
      cout << "#\t\t\t c_double (as Integer) = " << res->getInt("c_double") << endl;
      cout << "#\t\t\t c_double (as String) = " << res->getString("c_double") << endl;
      cout << "#\t\t\t c_double (as Boolean) = " << res->getBoolean("c_double") << endl;
      cout << "#\t\t\t c_double (as Long) = " << res->getInt64("c_double") << endl;
      cout << "#\t\t\t c_double (as Double) = " << res->getDouble("c_double") << endl;
      cout << "#\t\t\t c_double wasNull() = " << res->wasNull() << endl;
      cout << "#" << endl;
      if (c_double1 != c_double2) {
        throw runtime_error("Wrong result for column c_double");
      }

      c_int1 = res->getInt("c_null");
      cout << "#\t\t\t c_null INT DEFAULT NULL = " << c_int1;
      cout << " (isNull = " << res->isNull("c_null") << ")" << endl;
      cout << "#\t\t\t c_null (as Integer) = " << res->getInt("c_null") << endl;
      cout << "#\t\t\t c_null (as String) = " << res->getString("c_null") << endl;
      cout << "#\t\t\t c_null (as Boolean) = " << res->getBoolean("c_null") << endl;
      cout << "#\t\t\t c_null (as Long) = " << res->getInt64("c_null") << endl;
      cout << "#\t\t\t c_null (as Double) = " << res->getDouble("c_null") << endl;
      cout << "#\t\t\t c_null wasNull() = " << res->wasNull() << endl;
      cout << "#" << endl;
      if (!res->isNull(6) || !res->wasNull()) {
        throw runtime_error("isNull() or wasNull() has not reported NULL value of column c_null");
      }

    }

    /* Clean up */
    stmt->execute("DROP TABLE IF EXISTS test");

    cout << "# done!" << endl;

  } catch (sql::SQLException &e) {
    /*
    The MySQL Connector/C++ throws three different exceptions:

    - sql::MethodNotImplementedException (derived from sql::SQLException)
    - sql::InvalidArgumentException (derived from sql::SQLException)
    - sql::SQLException (derived from std::runtime_error)
    */
    cout << "# ERR: SQLException in " << __FILE__;
    cout << "(" << EXAMPLE_FUNCTION << ") on line " << __LINE__ << endl;
    /* Use what(), getErrorCode() and getSQLState() */
    cout << "# ERR: " << e.what();
    cout << " (MySQL error code: " << e.getErrorCode();
    cout << ", SQLState: " << e.getSQLState() << " )" << endl;
    cout << "not ok 1 - examples/resultset_types.cpp" << endl;

    return EXIT_FAILURE;
  } catch (std::runtime_error &e) {

    cout << "# ERR: runtime_error in " << __FILE__;
    cout << "(" << EXAMPLE_FUNCTION << ") on line " << __LINE__ << endl;
    cout << "# ERR: " << e.what() << endl;
    cout << "not ok 1 - examples/resultset_types.cpp" << endl;

    return EXIT_FAILURE;
  }

  cout << "ok 1 - examples/resultset_types.cpp" << endl;
  return EXIT_SUCCESS;
}