Skip to content

Commit

Permalink
Fixing Release Handle (#204)
Browse files Browse the repository at this point in the history
Changed usedByStmt to usedByRows, to solve direct queries release handle problem #203 and #145
  • Loading branch information
alexcocia authored Mar 29, 2023
1 parent bcd92b8 commit c984bd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conn.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func (c *Conn) Query(query string, args []driver.Value) (driver.Rows, error) {
os = &ODBCStmt{
h: h,
Parameters: ps,
usedByStmt: true}
usedByRows: true}
err = os.BindColumns()
if err != nil {
return nil, err
Expand Down

0 comments on commit c984bd6

Please sign in to comment.