Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/DBDish/mysql/StatementHandle.rakumod
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ method _row {
$!binds[$col].buffer_length = $!out-lengths[$col];

# Fetch the specific column of interest.
if $!stmt.mysql_stmt_fetch_column($!binds.typed-pointer, $col, 0) != 0 {
if $!stmt.mysql_stmt_fetch_column($!binds[$col], $col, 0) != 0 {
.fail without self!handle-errors;
}
}
Expand Down