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 241 242 243 244 245 246 247 248
|
/*
* 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
*/
/**
* Types of execptions thrown by Connector/C++
*
*/
/* Standard C++ includes */
#include <stdlib.h>
#include <iostream>
#include <sstream>
#include <stdexcept>
#include <boost/scoped_ptr.hpp>
/*
Public interface of the MySQL Connector/C++.
You might not use it but directly include directly the different
headers from cppconn/ and mysql_driver.h + mysql_util.h
(and mysql_connection.h). This will reduce your build time!
*/
#include <driver/mysql_public_iface.h>
/* Connection parameter and sample data */
#include "examples.h"
using namespace std;
int main(int argc, const char **argv)
{
static const string host(argc >= 2 ? argv[1] : EXAMPLE_HOST);
static const string user(argc >= 3 ? argv[2] : EXAMPLE_USER);
static const string pass(argc >= 4 ? argv[3] : EXAMPLE_PASS);
static const string database(argc >= 5 ? argv[4] : EXAMPLE_DB);
// Driver Manager
sql::Driver *driver;
int i;
cout << boolalpha;
cout << "1..1" << endl;
cout << "# Connector/C++ types of exceptions.." << endl;
try {
/* Using the Driver to create a connection */
driver = sql::mysql::get_driver_instance();
boost::scoped_ptr< sql::Connection > con(driver->connect(host, user, pass));
/* Run in autocommit mode */
con->setAutoCommit(1);
boost::scoped_ptr< sql::Savepoint > savepoint(NULL);
try {
// It makes no sense to set a savepoint in autocommit mode
savepoint.reset(con->setSavepoint(string("before_insert")));
throw new runtime_error("Setting a savepoint should not be allow in autocommit mode");
} catch (sql::InvalidArgumentException &e) {
cout << "#\t Invalid Argument: " << e.what();
cout << " (MySQL error code: " << e.getErrorCode();
cout << ", SQLState: " << e.getSQLState() << " )" << endl;
}
con->setSchema(database);
boost::scoped_ptr< sql::Statement > stmt(con->createStatement());
stmt->execute("DROP TABLE IF EXISTS test");
stmt->execute("CREATE TABLE test(id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, label CHAR(1))");
cout << "#\t Test table created" << endl;
try {
con->setReadOnly(true);
} catch (sql::MethodNotImplementedException &e) {
cout << "#\t Not implemented: " << e.what();
cout << " (MySQL error code: " << e.getErrorCode();
cout << ", SQLState: " << e.getSQLState() << " )" << endl;
}
con->setAutoCommit(0);
try {
savepoint.reset(con->setSavepoint(string("")));
} catch (sql::InvalidArgumentException &e) {
cout << "#\t Invalid Argument: " << e.what();
cout << " (MySQL error code: " << e.getErrorCode();
cout << ", SQLState: " << e.getSQLState() << " )" << endl;
}
savepoint.reset(con->setSavepoint(string("before_insert")));
{
boost::scoped_ptr< sql::PreparedStatement > prep_stmt(con->prepareStatement("INSERT INTO test(id, label) VALUES (?, ?)"));
for (i = 0; i < EXAMPLE_NUM_TEST_ROWS; i++) {
prep_stmt->setInt(1, test_data[i].id);
prep_stmt->setString(2, test_data[i].label);
prep_stmt->executeUpdate();
}
}
try {
boost::scoped_ptr< sql::PreparedStatement > prep_stmt(con->prepareStatement("INSERT INTO test(id, label) VALUES (?, ?)"));
prep_stmt->setInt(1, test_data[0].id);
/* This will cause a duplicate index error */
prep_stmt->executeUpdate();
throw new runtime_error("Query not executed or duplicate key not detected");
} catch (sql::SQLException &e) {
cout << "#\t SQL Exception: " << e.what();
cout << " (MySQL error code: " << e.getErrorCode();
cout << ", SQLState: " << e.getSQLState() << " )" << endl;
}
/* Switching back to auto commit will invalidate the savepoint! */
con->setAutoCommit(1);
try {
con->releaseSavepoint(savepoint.get());
throw new runtime_error("Releasing a savepoint should not be allow in autocommit mode");
} catch (sql::InvalidArgumentException &e) {
cout << "#\t Invalid Argument: " << e.what();
cout << " (MySQL error code: " << e.getErrorCode();
cout << ", SQLState: " << e.getSQLState() << " )" << endl;
}
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)
sql::SQLException is the base class.
*/
cout << endl;
cout << "# ERR: DbcException 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;
if (e.getErrorCode() == 1047) {
/*
Error: 1047 SQLSTATE: 08S01 (ER_UNKNOWN_COM_ERROR)
Message: Unknown command
*/
cout << "# ERR: Your server seems not to support PS at all because its MYSQL <4.1" << endl;
}
cout << "not ok 1 - examples/exceptions.cpp" << endl;
return EXIT_FAILURE;
} catch (std::runtime_error &e) {
cout << endl;
cout << "# ERR: runtime_error in " << __FILE__;
cout << "(" << EXAMPLE_FUNCTION << ") on line " << __LINE__ << endl;
cout << "# ERR: " << e.what() << endl;
cout << "not ok 1 - examples/exceptions.cpp" << endl;
return EXIT_FAILURE;
}
cout << "ok 1 - examples/exceptions.cpp" << endl;
return EXIT_SUCCESS;
}
bool prepare_execute(sql::Connection *con, const char *sql)
{
sql::PreparedStatement *prep_stmt;
prep_stmt = con->prepareStatement(sql);
prep_stmt->execute();
delete prep_stmt;
return true;
}
sql::Statement* emulate_prepare_execute(sql::Connection *con, const char *sql)
{
sql::PreparedStatement *prep_stmt;
sql::Statement *stmt = NULL;
cout << "#\t\t 'emulation': " << sql << endl;
try {
prep_stmt = con->prepareStatement(sql);
prep_stmt->execute();
cout << "#\t\t 'emulation': use of sql::PreparedStatement possible" << endl;
// safe upcast - PreparedStatement is derived from Statement
stmt = prep_stmt;
} catch (sql::SQLException &e) {
/*
Maybe the command is not supported by the MySQL Server?
http://dev.mysql.com/doc/refman/5.1/en/error-messages-server.html
Error: 1295 SQLSTATE: HY000 (ER_UNSUPPORTED_PS)
Message: This command is not supported in the prepared statement protocol yet
*/
if (e.getErrorCode() != 1295) {
/*
The MySQL Server should be able to prepare the statement
but something went wrong. Let the caller handle the error.
*/
throw ;
}
cout << "#\t\t 'emulation': ER_UNSUPPORTED_PS and fallback to sql::Statement" << endl;
cout << "#\t\t ERR: " << e.what();
cout << " (MySQL error code: " << e.getErrorCode();
cout << ", SQLState: " << e.getSQLState() << " )" << endl;
stmt = con->createStatement();
stmt->execute(sql);
}
return stmt;
}
|