Skip to content
Snippets Groups Projects
Commit ec1b743d authored by Steven Murray's avatar Steven Murray
Browse files

Fixed bug in MysqlStmt::do_bind_results() where bind[i].is_unsigned was not...

Fixed bug in MysqlStmt::do_bind_results() where bind[i].is_unsigned was not being set to true for uint64_t
parent 33cd6616
Branches
Tags
No related merge requests found
......@@ -546,6 +546,7 @@ bool MysqlStmt::do_bind_results() {
bind[i].buffer = holder->get_buffer();
bind[i].buffer_length = holder->get_buffer_length();
bind[i].is_null = holder->get_is_null();
bind[i].is_unsigned = holder->get_is_unsigned();
bind[i].length = holder->get_length();
bind[i].error = holder->get_error();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment