mirror of
https://github.com/boostorg/mysql.git
synced 2025-05-12 14:11:41 +00:00
Removed the notion of "single stream read and write" for the notion of "single async operation" UNIX socket examples no longer use SSL. Added Doxygen reference template and applied it to all functions and classes. Improved the overview section. Misc corrections in discussion. Added missing members to quickref. Fixed usage instructions. Fixed issue in rows that caused an unnecessary copy of the strings. Added upgrade instructions from 0.2.x. Added SQL injection warnings in connection::query docs. Fixed problems with missing icons. Close #66 Close #96 Close #78 Close #47
746 lines
24 KiB
C++
746 lines
24 KiB
C++
//
|
|
// Copyright (c) 2019-2023 Ruben Perez Hidalgo (rubenperez038 at gmail dot com)
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
|
|
// This file contains all the snippets that are used in the docs.
|
|
// They're here so they are built and run, to ensure correctness
|
|
|
|
#include <boost/mysql/date.hpp>
|
|
#include <boost/mysql/datetime.hpp>
|
|
#include <boost/mysql/diagnostics.hpp>
|
|
#include <boost/mysql/error_code.hpp>
|
|
#include <boost/mysql/error_with_diagnostics.hpp>
|
|
#include <boost/mysql/execution_state.hpp>
|
|
#include <boost/mysql/field.hpp>
|
|
#include <boost/mysql/field_view.hpp>
|
|
#include <boost/mysql/metadata_mode.hpp>
|
|
#include <boost/mysql/results.hpp>
|
|
#include <boost/mysql/row.hpp>
|
|
#include <boost/mysql/row_view.hpp>
|
|
#include <boost/mysql/rows.hpp>
|
|
#include <boost/mysql/rows_view.hpp>
|
|
#include <boost/mysql/statement.hpp>
|
|
#include <boost/mysql/string_view.hpp>
|
|
#include <boost/mysql/tcp_ssl.hpp>
|
|
#include <boost/mysql/throw_on_error.hpp>
|
|
|
|
#include <boost/asio/as_tuple.hpp>
|
|
#include <boost/asio/awaitable.hpp>
|
|
#include <boost/asio/co_spawn.hpp>
|
|
#include <boost/asio/io_context.hpp>
|
|
#include <boost/asio/ssl/context.hpp>
|
|
#include <boost/asio/this_coro.hpp>
|
|
#include <boost/config.hpp>
|
|
#include <boost/system/system_error.hpp>
|
|
|
|
#include <iostream>
|
|
#include <string>
|
|
#include <tuple>
|
|
|
|
#ifndef BOOST_NO_CXX17_HDR_OPTIONAL
|
|
#include <optional>
|
|
#endif
|
|
#ifdef BOOST_ASIO_HAS_CO_AWAIT
|
|
#include <boost/asio/experimental/awaitable_operators.hpp>
|
|
#endif
|
|
|
|
using boost::mysql::date;
|
|
using boost::mysql::datetime;
|
|
using boost::mysql::diagnostics;
|
|
using boost::mysql::error_code;
|
|
using boost::mysql::error_with_diagnostics;
|
|
using boost::mysql::execution_state;
|
|
using boost::mysql::field;
|
|
using boost::mysql::field_view;
|
|
using boost::mysql::metadata_mode;
|
|
using boost::mysql::results;
|
|
using boost::mysql::row;
|
|
using boost::mysql::row_view;
|
|
using boost::mysql::rows;
|
|
using boost::mysql::rows_view;
|
|
using boost::mysql::statement;
|
|
using boost::mysql::string_view;
|
|
using boost::mysql::tcp_ssl_connection;
|
|
|
|
#define ASSERT(expr) \
|
|
if (!(expr)) \
|
|
{ \
|
|
std::cerr << "Assertion failed: " #expr << std::endl; \
|
|
exit(1); \
|
|
}
|
|
|
|
const char* get_value_from_user() { return ""; }
|
|
|
|
//[prepared_statements_execute
|
|
// description, price and show_in_store are not trusted, since they may
|
|
// have been read from a file or an HTTP endpoint
|
|
void insert_product(
|
|
tcp_ssl_connection& conn,
|
|
const statement& stmt,
|
|
string_view description,
|
|
int price,
|
|
bool show_in_store
|
|
)
|
|
{
|
|
results result;
|
|
conn.execute_statement(
|
|
stmt,
|
|
std::make_tuple(description, price, static_cast<int>(show_in_store)),
|
|
result
|
|
);
|
|
}
|
|
//]
|
|
|
|
#ifndef BOOST_NO_CXX17_HDR_OPTIONAL
|
|
//[prepared_statements_execute_null
|
|
// description, price and show_in_store are not trusted, since they may
|
|
// have been read from a file or an HTTP endpoint
|
|
void insert_product(
|
|
tcp_ssl_connection& conn,
|
|
const statement& stmt,
|
|
std::optional<string_view> description,
|
|
int price,
|
|
bool show_in_store
|
|
)
|
|
{
|
|
// if description has a value, description_param will have kind() == field_kind::string
|
|
// and will point to it. Otherwise, description_param.kind() == field_kind::null
|
|
auto description_param = description ? field_view(*description) : field_view();
|
|
|
|
// Execute the insert
|
|
results result;
|
|
conn.execute_statement(
|
|
stmt,
|
|
std::make_tuple(description_param, price, static_cast<int>(show_in_store)),
|
|
result
|
|
);
|
|
}
|
|
//]
|
|
#endif
|
|
|
|
#ifdef BOOST_ASIO_HAS_CO_AWAIT
|
|
boost::asio::awaitable<void> overview_coro(tcp_ssl_connection& conn)
|
|
{
|
|
//[overview_async_coroutinescpp20
|
|
// Using this CompletionToken, you get C++20 coroutines that communicate
|
|
// errors with error_codes. This way, you can access the diagnostics object.
|
|
constexpr auto token = boost::asio::as_tuple(boost::asio::use_awaitable);
|
|
|
|
// Run our query as a coroutine
|
|
diagnostics diag;
|
|
results result;
|
|
auto [ec] = co_await conn.async_query("SELECT 'Hello world!'", result, diag, token);
|
|
|
|
// This will throw an error_with_diagnostics in case of failure
|
|
boost::mysql::throw_on_error(ec, diag);
|
|
//]
|
|
}
|
|
|
|
void run_overview_coro(tcp_ssl_connection& conn)
|
|
{
|
|
boost::asio::co_spawn(
|
|
conn.get_executor(),
|
|
[&conn] { return overview_coro(conn); },
|
|
[](std::exception_ptr ptr) {
|
|
if (ptr)
|
|
{
|
|
std::rethrow_exception(ptr);
|
|
}
|
|
}
|
|
);
|
|
static_cast<boost::asio::io_context&>(conn.get_executor().context()).run();
|
|
}
|
|
|
|
boost::asio::awaitable<void> dont_run()
|
|
{
|
|
using namespace boost::asio::experimental::awaitable_operators;
|
|
|
|
// Setup
|
|
boost::asio::ssl::context ssl_ctx(boost::asio::ssl::context::tls_client);
|
|
boost::mysql::tcp_ssl_connection conn(co_await boost::asio::this_coro::executor, ssl_ctx);
|
|
|
|
//[overview_async_dont
|
|
// Coroutine body
|
|
// DO NOT DO THIS!!!!
|
|
results result1, result2;
|
|
co_await (
|
|
conn.async_query("SELECT 1", result1, boost::asio::use_awaitable) &&
|
|
conn.async_query("SELECT 2", result2, boost::asio::use_awaitable)
|
|
);
|
|
//]
|
|
}
|
|
#endif
|
|
|
|
void main_impl(int argc, char** argv)
|
|
{
|
|
if (argc != 4)
|
|
{
|
|
std::cerr << "Usage: " << argv[0] << " <username> <password> <server-hostname>\n";
|
|
exit(1);
|
|
}
|
|
|
|
//[overview_connection
|
|
// The execution context, required to run I/O operations.
|
|
boost::asio::io_context ctx;
|
|
|
|
// The SSL context, required to establish TLS connections.
|
|
// The default SSL options are good enough for us at this point.
|
|
boost::asio::ssl::context ssl_ctx(boost::asio::ssl::context::tls_client);
|
|
|
|
// Represents a connection to the MySQL server.
|
|
boost::mysql::tcp_ssl_connection conn(ctx.get_executor(), ssl_ctx);
|
|
//]
|
|
|
|
//[overview_connect
|
|
// Resolve the hostname to get a collection of endpoints
|
|
boost::asio::ip::tcp::resolver resolver(ctx.get_executor());
|
|
auto endpoints = resolver.resolve(argv[3], boost::mysql::default_port_string);
|
|
|
|
// The username and password to use
|
|
boost::mysql::handshake_params params(
|
|
argv[1], // username
|
|
argv[2], // password
|
|
"boost_mysql_examples" // database
|
|
);
|
|
|
|
// Connect to the server using the first endpoint returned by the resolver
|
|
conn.connect(*endpoints.begin(), params);
|
|
//]
|
|
|
|
{
|
|
//[overview_query_use_case
|
|
results result;
|
|
conn.query("START TRANSACTION", result);
|
|
//]
|
|
}
|
|
{
|
|
//[overview_statement_use_case
|
|
statement stmt = conn.prepare_statement(
|
|
"SELECT first_name FROM employee WHERE company_id = ? AND salary > ?"
|
|
);
|
|
|
|
results result;
|
|
conn.execute_statement(stmt, std::make_tuple("HGS", 30000), result);
|
|
//]
|
|
}
|
|
{
|
|
//[overview_views
|
|
// Populate a results object
|
|
results result;
|
|
conn.query("SELECT 'Hello world'", result);
|
|
|
|
// results::rows() returns a rows_view. The underlying memory is owned by the results object
|
|
rows_view all_rows = result.rows();
|
|
|
|
// Indexing a rows_view yields a row_view. The underlying memory is owned by the results object
|
|
row_view first_row = all_rows.at(0);
|
|
|
|
// Indexing a row_view yields a field_view. The underlying memory is owned by the results object
|
|
field_view first_field = first_row.at(0); // Contains the string "Hello world"
|
|
|
|
//]
|
|
ASSERT(first_field.as_string() == "Hello world");
|
|
|
|
//[overview_taking_ownership
|
|
// You may use all_rows_owning after result has gone out of scope
|
|
rows all_rows_owning{all_rows};
|
|
|
|
// You may use first_row_owning after result has gone out of scope
|
|
row first_row_owning{first_row};
|
|
|
|
// You may use first_field_owning after result has gone out of scope
|
|
field first_field_owning{first_field};
|
|
//]
|
|
}
|
|
{
|
|
//[overview_using_fields
|
|
results result;
|
|
conn.query("SELECT 'abc', 42", result);
|
|
|
|
// Obtain a field's underlying value using the is_xxx and get_xxx accessors
|
|
field_view f = result.rows().at(0).at(0); // f points to the string "abc"
|
|
if (f.is_string())
|
|
{
|
|
// we know it's a string, unchecked access
|
|
string_view s = f.get_string();
|
|
std::cout << s << std::endl; // Use the string as required
|
|
}
|
|
else
|
|
{
|
|
// Oops, something went wrong - schema msimatch?
|
|
}
|
|
|
|
// Alternative: use the as_xxx accessor
|
|
f = result.rows().at(0).at(1);
|
|
std::int64_t value = f.as_int64(); // Checked access. Throws if f doesn't contain an int
|
|
std::cout << value << std::endl; // Use the int as required
|
|
|
|
//]
|
|
}
|
|
{
|
|
//[overview_handling_nulls
|
|
results result;
|
|
|
|
// Create some test data
|
|
conn.query(
|
|
R"%(
|
|
CREATE TEMPORARY TABLE products (
|
|
id VARCHAR(50) PRIMARY KEY,
|
|
description VARCHAR(256)
|
|
)
|
|
)%",
|
|
result
|
|
);
|
|
conn.query("INSERT INTO products VALUES ('PTT', 'Potatoes'), ('CAR', NULL)", result);
|
|
|
|
// Retrieve the data. Note that some fields are NULL
|
|
conn.query("SELECT id, description FROM products", result);
|
|
|
|
for (row_view r : result.rows())
|
|
{
|
|
field_view description_fv = r.at(1);
|
|
if (description_fv.is_null())
|
|
{
|
|
// Handle the NULL value
|
|
// Note: description_fv.is_string() will return false here; NULL is represented as a separate
|
|
// type
|
|
std::cout << "No description for product_id " << r.at(0) << std::endl;
|
|
}
|
|
else
|
|
{
|
|
// Handle the non-NULL case. Get the underlying value and use it as you want
|
|
// If there is any schema mismatch (and description was not defined as VARCHAR), this will
|
|
// throw
|
|
string_view description = description_fv.as_string();
|
|
|
|
// Use description as required
|
|
std::cout << "product_id " << r.at(0) << ": " << description << std::endl;
|
|
}
|
|
}
|
|
//]
|
|
|
|
conn.query("DROP TABLE products", result);
|
|
}
|
|
{
|
|
//[overview_statements_setup
|
|
results result;
|
|
conn.query(
|
|
R"%(
|
|
CREATE TEMPORARY TABLE products (
|
|
id VARCHAR(50) PRIMARY KEY,
|
|
description VARCHAR(256)
|
|
)
|
|
)%",
|
|
result
|
|
);
|
|
conn.query("INSERT INTO products VALUES ('PTT', 'Potatoes'), ('CAR', 'Carrots')", result);
|
|
//]
|
|
}
|
|
{
|
|
//[overview_statements_prepare
|
|
statement stmt = conn.prepare_statement("SELECT description FROM products WHERE id = ?");
|
|
//]
|
|
|
|
//[overview_statements_execute
|
|
// Obtain the product_id from the user. product_id is untrusted input
|
|
const char* product_id = argv[2];
|
|
|
|
// Execute the statement
|
|
results result;
|
|
conn.execute_statement(stmt, std::make_tuple(product_id), result);
|
|
|
|
// Use result as required
|
|
//]
|
|
|
|
conn.query("DROP TABLE products", result);
|
|
}
|
|
{
|
|
//[overview_multifn
|
|
// Create the table and some sample data
|
|
// In a real system, body may be megabaytes long.
|
|
results result;
|
|
conn.query(
|
|
R"%(
|
|
CREATE TEMPORARY TABLE posts (
|
|
id INT PRIMARY KEY AUTO_INCREMENT,
|
|
title VARCHAR (256),
|
|
body TEXT
|
|
)
|
|
)%",
|
|
result
|
|
);
|
|
conn.query(
|
|
R"%(
|
|
INSERT INTO posts (title, body) VALUES
|
|
('Post 1', 'A very long post body'),
|
|
('Post 2', 'An even longer post body')
|
|
)%",
|
|
result
|
|
);
|
|
|
|
// execution_state stores state about our operation, and must be passed to all functions
|
|
execution_state st;
|
|
|
|
// Writes the query request and reads the server response, but not the rows
|
|
conn.start_query("SELECT title, body FROM posts", st);
|
|
|
|
// Reads all the returned rows, in batches.
|
|
// st.complete() returns true once there are no more rows to read
|
|
while (!st.complete())
|
|
{
|
|
// row_batch will be valid until conn performs the next network operation
|
|
rows_view row_batch = conn.read_some_rows(st);
|
|
|
|
for (row_view post : row_batch)
|
|
{
|
|
// Process post as required
|
|
std::cout << "Title:" << post.at(0) << std::endl;
|
|
}
|
|
}
|
|
//]
|
|
|
|
conn.query("DROP TABLE posts", result);
|
|
}
|
|
{
|
|
//[overview_errors_sync_errc
|
|
error_code ec;
|
|
diagnostics diag;
|
|
results result;
|
|
|
|
// The provided SQL is invalid. The server will return an error.
|
|
// ec will be set to a non-zero value
|
|
conn.query("this is not SQL!", result, ec, diag);
|
|
|
|
if (ec)
|
|
{
|
|
// The error code will likely report a syntax error
|
|
std::cout << "Operation failed with error code: " << ec << '\n';
|
|
|
|
// diag.server_message() will contain the classic phrase
|
|
// "You have an error in your SQL syntax; check the manual..."
|
|
// Bear in mind that server_message() may contain user input, so treat it with caution
|
|
std::cout << "Server diagnostics: " << diag.server_message() << std::endl;
|
|
}
|
|
//]
|
|
}
|
|
{
|
|
//[overview_errors_sync_exc
|
|
try
|
|
{
|
|
// The provided SQL is invalid. This function will throw an exception.
|
|
results result;
|
|
conn.query("this is not SQL!", result);
|
|
}
|
|
catch (const error_with_diagnostics& err)
|
|
{
|
|
// error_with_diagnostics contains an error_code and a diagnostics object.
|
|
// It inherits from boost::system::system_error.
|
|
std::cout << "Operation failed with error code: " << err.code() << '\n'
|
|
<< "Server diagnostics: " << err.get_diagnostics().server_message() << std::endl;
|
|
}
|
|
//]
|
|
}
|
|
#ifdef BOOST_ASIO_HAS_CO_AWAIT
|
|
{
|
|
run_overview_coro(conn);
|
|
}
|
|
#endif
|
|
{
|
|
//[prepared_statements_prepare
|
|
// Table setup
|
|
results result;
|
|
conn.query(
|
|
R"%(
|
|
CREATE TEMPORARY TABLE products (
|
|
id INT PRIMARY KEY AUTO_INCREMENT,
|
|
description VARCHAR(256),
|
|
price INT NOT NULL,
|
|
show_in_store TINYINT
|
|
)
|
|
)%",
|
|
result
|
|
);
|
|
|
|
// Prepare a statement to insert into this table
|
|
statement stmt = conn.prepare_statement(
|
|
"INSERT INTO products (description, price, show_in_store) VALUES (?, ?, ?)"
|
|
);
|
|
//]
|
|
|
|
// Run the two functions, even if this is not shown in discussion
|
|
insert_product(conn, stmt, string_view("This is a product"), 2000, true);
|
|
#ifndef BOOST_NO_CXX17_HDR_OPTIONAL
|
|
insert_product(conn, stmt, std::optional<string_view>(), 2000, true);
|
|
#endif
|
|
conn.query("DROP TABLE products", result);
|
|
}
|
|
{
|
|
//[multi_function_setup
|
|
results result;
|
|
conn.query(
|
|
R"%(
|
|
CREATE TEMPORARY TABLE posts (
|
|
id INT PRIMARY KEY AUTO_INCREMENT,
|
|
title VARCHAR (256),
|
|
body TEXT
|
|
)
|
|
)%",
|
|
result
|
|
);
|
|
conn.query(
|
|
R"%(
|
|
INSERT INTO posts (title, body) VALUES
|
|
('Post 1', 'A very long post body'),
|
|
('Post 2', 'An even longer post body')
|
|
)%",
|
|
result
|
|
);
|
|
|
|
statement stmt = conn.prepare_statement("SELECT title, body FROM posts");
|
|
//]
|
|
|
|
auto read_all_rows = [&](execution_state& st) {
|
|
//[multi_function_read_some_rows
|
|
// st.complete() returns true once the OK packet is received
|
|
while (!st.complete())
|
|
{
|
|
// row_batch will be valid until conn performs the next network operation
|
|
rows_view row_batch = conn.read_some_rows(st);
|
|
|
|
for (row_view post : row_batch)
|
|
{
|
|
// Process post as required
|
|
std::cout << "Title:" << post.at(0) << std::endl;
|
|
}
|
|
}
|
|
//]
|
|
};
|
|
|
|
{
|
|
//[multi_function_start_query
|
|
execution_state st;
|
|
conn.start_query("SELECT title, body FROM posts", st);
|
|
//]
|
|
|
|
read_all_rows(st); // don't compromise further operations
|
|
}
|
|
|
|
{
|
|
//[multi_function_start_statement_execution
|
|
execution_state st;
|
|
conn.start_statement_execution(
|
|
stmt,
|
|
std::make_tuple(), // The statement has no params, so an empty tuple is passed
|
|
st
|
|
);
|
|
//]
|
|
|
|
read_all_rows(st); // don't compromise further operations
|
|
conn.query("DROP TABLE posts", result);
|
|
}
|
|
}
|
|
|
|
// fields
|
|
{
|
|
//[fields_field_views
|
|
results result;
|
|
conn.query("SELECT 'Hello world!'", result);
|
|
|
|
// fv doesn't own its memory; if result goes out of scope, fv becomes invalid
|
|
field_view fv = result.rows().at(0).at(0);
|
|
|
|
// sv also points into result; if result goes out of scope, sv becomes invalid
|
|
string_view sv = fv.as_string();
|
|
//]
|
|
|
|
ASSERT(sv == "Hello world!");
|
|
}
|
|
{
|
|
//[fields_field_views_scalars
|
|
results result;
|
|
conn.query("SELECT 42", result);
|
|
|
|
// fv doesn't own its memory; if result goes out of scope, fv becomes invalid
|
|
field_view fv = result.rows().at(0).at(0);
|
|
|
|
// intv is valid even after result goes out of scope
|
|
std::int64_t intv = fv.as_int64();
|
|
//]
|
|
|
|
ASSERT(intv == 42);
|
|
}
|
|
{
|
|
//[fields_taking_ownership
|
|
results result;
|
|
conn.query("SELECT 'Hello world!'", result);
|
|
|
|
// fv doesn't own its memory; if result goes out of scope, fv becomes invalid
|
|
field_view fv = result.rows().at(0).at(0);
|
|
|
|
// f takes ownership of fv's contents. f is valid even after result goes out of scope
|
|
field f(fv);
|
|
//]
|
|
|
|
ASSERT(f.as_string() == "Hello world!");
|
|
}
|
|
{
|
|
//[field_accessor_references
|
|
field f("my_string"); // constructs a field that owns the string "my_string"
|
|
std::string& s = f.as_string(); // s points into f's storage
|
|
s.push_back('2'); // f now holds "my_string2"
|
|
|
|
//]
|
|
|
|
ASSERT(s == "my_string2");
|
|
}
|
|
{
|
|
//[field_assignment
|
|
field f("my_string"); // constructs a field that owns the string "my_string"
|
|
f = 42; // destroys "my_string" and stores the value 42 as an int64
|
|
|
|
//]
|
|
|
|
ASSERT(f.as_int64() == 42);
|
|
}
|
|
{
|
|
//[field_date_as_time_point
|
|
date d(2020, 2, 19); // d holds "2020-02-19"
|
|
date::time_point tp = d.as_time_point(); // now use tp normally
|
|
|
|
//]
|
|
ASSERT(date(tp) == d);
|
|
}
|
|
{
|
|
//[field_date_valid
|
|
date d1(2020, 2, 19); // regular date
|
|
bool v1 = d1.valid(); // true
|
|
date d2(2020, 0, 19); // invalid date
|
|
bool v2 = d2.valid(); // false
|
|
|
|
//]
|
|
ASSERT(v1);
|
|
ASSERT(!v2);
|
|
}
|
|
{
|
|
//[field_date_get_time_point
|
|
date d = /* obtain a date somehow */ date(2020, 2, 29);
|
|
if (d.valid())
|
|
{
|
|
// Same as as_time_point, but doesn't check for validity
|
|
// Caution: be sure to check for validity.
|
|
// If d is not valid, get_time_point results in undefined behavior
|
|
date::time_point tp = d.get_time_point();
|
|
|
|
// Use tp as required
|
|
std::cout << tp.time_since_epoch().count() << std::endl;
|
|
}
|
|
else
|
|
{
|
|
// the date is invalid
|
|
std::cout << "Invalid date" << std::endl;
|
|
}
|
|
//]
|
|
}
|
|
{
|
|
//[field_datetime
|
|
datetime dt1(2020, 10, 11, 10, 20, 59, 123456); // regular datetime 2020-10-11 10:20:59.123456
|
|
bool v1 = dt1.valid(); // true
|
|
datetime dt2(2020, 0, 11, 10, 20, 59); // invalid datetime 2020-00-10 10:20:59.000000
|
|
bool v2 = dt2.valid(); // false
|
|
|
|
datetime::time_point tp = dt1.as_time_point(); // convert to time_point
|
|
|
|
//]
|
|
ASSERT(v1);
|
|
ASSERT(!v2);
|
|
ASSERT(datetime(tp) == dt1);
|
|
}
|
|
{
|
|
//[field_timestamp_setup
|
|
results result;
|
|
conn.query(
|
|
R"%(
|
|
CREATE TEMPORARY TABLE events (
|
|
id INT PRIMARY KEY AUTO_INCREMENT,
|
|
t TIMESTAMP,
|
|
contents VARCHAR(256)
|
|
)
|
|
)%",
|
|
result
|
|
);
|
|
//]
|
|
|
|
//[field_timestamp_stmts
|
|
auto insert_stmt = conn.prepare_statement("INSERT INTO events (t, contents) VALUES (?, ?)");
|
|
auto select_stmt = conn.prepare_statement("SELECT id, t, contents FROM events WHERE t > ?");
|
|
//]
|
|
|
|
//[fields_timestamp_set_time_zone
|
|
// This change has session scope. All operations after this query
|
|
// will now use UTC for TIMESTAMPs. Other sessions will not see the change.
|
|
// If you need to reconnect the connection, you need to run this again.
|
|
conn.query("SET @time_zone = 'UTC'", result);
|
|
//]
|
|
|
|
//[fields_timestamp_insert
|
|
// Get the timestamp of the event. This may have been provided by an external system
|
|
// For the sake of example, we will use the current timestamp
|
|
datetime event_timestamp = datetime::now();
|
|
|
|
// event_timestamp will be interpreted as UTC if you have run SET @time_zone
|
|
conn.execute_statement(insert_stmt, std::make_tuple(event_timestamp, "Something happened"), result);
|
|
//]
|
|
|
|
//[fields_timestamp_select
|
|
// Get the timestamp threshold from the user. We will use a constant for the sake of example
|
|
datetime threshold = datetime(2022, 1, 1); // get events that happened after 2022-01-01
|
|
|
|
// threshold will be interpreted as UTC. The retrieved events will have their
|
|
// `t` column in UTC
|
|
conn.execute_statement(select_stmt, std::make_tuple(threshold), result);
|
|
//]
|
|
}
|
|
{
|
|
//[metadata
|
|
// By default, a connection has metadata_mode::minimal
|
|
results result;
|
|
conn.query("SELECT 1 AS my_field", result);
|
|
string_view colname = result.meta()[0].column_name();
|
|
|
|
// colname will be empty because conn.meta_mode() == metadata_mode::minimal
|
|
ASSERT(colname == "");
|
|
|
|
// If you are using metadata names, set the connection's metadata_mode
|
|
conn.set_meta_mode(metadata_mode::full);
|
|
conn.query("SELECT 1 AS my_field", result);
|
|
colname = result.meta()[0].column_name();
|
|
ASSERT(colname == "my_field");
|
|
//]
|
|
}
|
|
|
|
// Close
|
|
conn.close();
|
|
}
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
try
|
|
{
|
|
main_impl(argc, argv);
|
|
}
|
|
catch (const boost::mysql::error_with_diagnostics& err)
|
|
{
|
|
std::cerr << "Error: " << err.what() << '\n'
|
|
<< "Server diagnostics: " << err.get_diagnostics().server_message() << std::endl;
|
|
return 1;
|
|
}
|
|
catch (const std::exception& err)
|
|
{
|
|
std::cerr << "Error: " << err.what() << std::endl;
|
|
return 1;
|
|
}
|
|
}
|