mirror of
https://github.com/boostorg/mysql.git
synced 2026-01-28 07:22:26 +00:00
Row reading reworks
- Removed distinction between row and owning_row - Changed semantics for fetch_one to row& + bool - Renamed all fetch_* fns to read_* - Added row.clear()
This commit is contained in:
@@ -52,7 +52,7 @@ void main_impl(int argc, char** argv)
|
||||
//]
|
||||
|
||||
//[tutorial_fetch
|
||||
std::vector<boost::mysql::owning_row> employees = result.fetch_all();
|
||||
std::vector<boost::mysql::row> employees = result.read_all();
|
||||
//]
|
||||
|
||||
//[tutorial_values
|
||||
|
||||
Reference in New Issue
Block a user