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
|
/*
Copyright 2007 - 2008 MySQL AB, 2008 - 2010 Sun Microsystems, Inc. All rights reserved.
The MySQL Connector/C++ is licensed under the terms of the GPL
<http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>, like most
MySQL Connectors. There are special exceptions to the terms and
conditions of the GPL as it is applied to this software, see the
FLOSS License Exception
<http://www.mysql.com/about/legal/licensing/foss-exception.html>.
*/
/**
* Basic example demonstrating connect and simple queries
*
*/
// Standard C++ includes
#include <stdlib.h>
#include <iostream>
#include <sstream>
#include <stdexcept>
/*
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;
/**
* Usage example for Driver, Connection, (simple) Statement, ResultSet
*/
int main(int argc, const char **argv)
{
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);
/* sql::ResultSet.rowsCount() returns size_t */
size_t row;
stringstream sql;
stringstream msg;
int i, affected_rows;
cout << boolalpha;
cout << "1..1" << endl;
cout << "# Connector/C++ connect basic usage example.." << endl;
cout << "#" << endl;
try {
sql::Driver * driver = sql::mysql::get_driver_instance();
/* Using the Driver to create a connection */
std::auto_ptr< sql::Connection > con(driver->connect(url, user, pass));
/* Creating a "simple" statement - "simple" = not a prepared statement */
std::auto_ptr< sql::Statement > stmt(con->createStatement());
/* Create a test table demonstrating the use of sql::Statement.execute() */
stmt->execute("USE " + database);
stmt->execute("DROP TABLE IF EXISTS test");
stmt->execute("CREATE TABLE test(id INT, label CHAR(1))");
cout << "#\t Test table created" << endl;
/* Populate the test table with data */
for (i = 0; i < EXAMPLE_NUM_TEST_ROWS; i++) {
/*
KLUDGE: You should take measures against SQL injections!
example.h contains the test data
*/
sql.str("");
sql << "INSERT INTO test(id, label) VALUES (";
sql << test_data[i].id << ", '" << test_data[i].label << "')";
stmt->execute(sql.str());
}
cout << "#\t Test table populated" << endl;
{
/*
Run a query which returns exactly one result set like SELECT
Stored procedures (CALL) may return more than one result set
*/
std::auto_ptr< sql::ResultSet > res(stmt->executeQuery("SELECT id, label FROM test ORDER BY id ASC"));
cout << "#\t Running 'SELECT id, label FROM test ORDER BY id ASC'" << endl;
/* Number of rows in the result set */
cout << "#\t\t Number of rows\t";
cout << "res->rowsCount() = " << res->rowsCount() << endl;
if (res->rowsCount() != EXAMPLE_NUM_TEST_ROWS) {
msg.str("");
msg << "Expecting " << EXAMPLE_NUM_TEST_ROWS << "rows, found " << res->rowsCount();
throw runtime_error(msg.str());
}
/* Fetching data */
row = 0;
while (res->next()) {
cout << "#\t\t Fetching row " << row << "\t";
/* You can use either numeric offsets... */
cout << "id = " << res->getInt(1);
/* ... or column names for accessing results. The latter is recommended. */
cout << ", label = '" << res->getString("label") << "'" << endl;
row++;
}
}
{
/* Fetching again but using type convertion methods */
std::auto_ptr< sql::ResultSet > res(stmt->executeQuery("SELECT id FROM test ORDER BY id DESC"));
cout << "#\t Fetching 'SELECT id FROM test ORDER BY id DESC' using type conversion" << endl;
row = 0;
while (res->next()) {
cout << "#\t\t Fetching row " << row;
cout << "#\t id (int) = " << res->getInt("id");
cout << "#\t id (boolean) = " << res->getBoolean("id");
cout << "#\t id (long) = " << res->getInt64("id") << endl;
row++;
}
}
/* Usage of UPDATE */
stmt->execute("INSERT INTO test(id, label) VALUES (100, 'z')");
affected_rows = stmt->executeUpdate("UPDATE test SET label = 'y' WHERE id = 100");
cout << "#\t UPDATE indicates " << affected_rows << " affected rows" << endl;
if (affected_rows != 1) {
msg.str("");
msg << "Expecting one row to be changed, but " << affected_rows << "change(s) reported";
throw runtime_error(msg.str());
}
{
std::auto_ptr< sql::ResultSet > res(stmt->executeQuery("SELECT id, label FROM test WHERE id = 100"));
res->next();
if ((res->getInt("id") != 100) || (res->getString("label") != "y")) {
msg.str("Update must have failed, expecting 100/y got");
msg << res->getInt("id") << "/" << res->getString("label");
throw runtime_error(msg.str());
}
cout << "#\t\t Expecting id = 100, label = 'y' and got id = " << res->getInt("id");
cout << ", label = '" << res->getString("label") << "'" << endl;
}
/* Clean up */
stmt->execute("DROP TABLE IF EXISTS test");
stmt.reset(NULL); /* free the object inside */
cout << "#" << endl;
cout << "#\t Demo of connection URL syntax" << endl;
try {
/*s This will implicitly assume that the host is 'localhost' */
url = "unix://path_to_mysql_socket.sock";
con.reset(driver->connect(url, user, pass));
} catch (sql::SQLException &e) {
cout << "#\t\t unix://path_to_mysql_socket.sock caused expected exception" << endl;
cout << "#\t\t " << e.what() << " (MySQL error code: " << e.getErrorCode();
cout << ", SQLState: " << e.getSQLState() << " )" << endl;
}
try {
url = "tcp://hostname_or_ip[:port]";
con.reset(driver->connect(url, user, pass));
} catch (sql::SQLException &e) {
cout << "#\t\t tcp://hostname_or_ip[:port] caused expected exception" << endl;
cout << "#\t\t " << e.what() << " (MySQL error code: " << e.getErrorCode();
cout << ", SQLState: " << e.getSQLState() << " )" << endl;
}
try {
/*
Note: in the MySQL C-API host = localhost would cause a socket connection!
Not so with the C++ Connector. The C++ Connector will translate
tcp://localhost into tcp://127.0.0.1 and give you a TCP connection
url = "tcp://localhost[:port]";
*/
con.reset(driver->connect(url, user, pass));
} catch (sql::SQLException &e) {
cout << "#\t\t tcp://hostname_or_ip[:port] caused expected exception" << endl;
cout << "#\t\t " << e.what() << " (MySQL error code: " << e.getErrorCode();
cout << ", SQLState: " << e.getSQLState() << " )" << endl;
}
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 << "(" << __FUNCTION__ << ") on line " << __LINE__ << endl;
/* Use what() (derived from std::runtime_error) to fetch the error message */
cout << "# ERR: " << e.what();
cout << " (MySQL error code: " << e.getErrorCode();
cout << ", SQLState: " << e.getSQLState() << " )" << endl;
cout << "not ok 1 - examples/connect.php" << endl;
return EXIT_FAILURE;
} catch (std::runtime_error &e) {
cout << "# ERR: runtime_error in " << __FILE__;
cout << "(" << __FUNCTION__ << ") on line " << __LINE__ << endl;
cout << "# ERR: " << e.what() << endl;
cout << "not ok 1 - examples/connect.php" << endl;
return EXIT_FAILURE;
}
cout << "ok 1 - examples/connect.php" << endl;
return EXIT_SUCCESS;
}
|