Sophie

Sophie

distrib > Fedora > 14 > x86_64 > by-pkgid > 7fc9888841469498b1cb51895f685a2f > files > 35

mysql-connector-c++-devel-1.1.0-0.2.bzr888.fc14.x86_64.rpm

/*
   Copyright (c) 2008, 2010, Oracle and/or its affiliates. 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 how to check the type of a result set column
*
*/

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

/* 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();
		std::auto_ptr< sql::Connection > con(driver->connect(url, user, pass));
		con->setSchema(database);

		std::auto_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;

		std::auto_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;

		std::auto_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 << "(" << __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 << "(" << __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;
}