Skip to content

Commit

Permalink
Comments, version 0.3.0, readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
jgaa committed Apr 5, 2024
1 parent 6923afb commit f337285
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.24)

if (NOT DEFINED MYSQLPOOL_VERSION)
set(MYSQLPOOL_VERSION 0.2.0)
set(MYSQLPOOL_VERSION 0.3.0)
endif()

project(mysqlpool-cpp
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ need. However, you will have to deal with the error handling yourself.
- Time Zone can be specified for a query. The pool will then ensure that the connection
used for that request use the specified time zone. Useful for servers that handle
requests for users from different time zones.
- Flexible logging options
- Flexible logging options.

## Error handling

Expand Down
2 changes: 1 addition & 1 deletion include/mysqlpool/mysqlpool.h
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ class Mysqlpool {
return name == time_zone_name_;
}

// Cache the statement for setting the time zone (per connection)
// Cache for prepared statements (per connection)
boost::asio::awaitable<std::tuple<boost::system::error_code, boost::mysql::statement *>> getStmt(boost::mysql::diagnostics& diag,
std::string_view query) {

Expand Down

0 comments on commit f337285

Please sign in to comment.