-
-
Notifications
You must be signed in to change notification settings - Fork 39
Open
Description
Hi mattn,
it seems the Query function has memory leaking issue.
https://github.com/mattn/go-adodb/blob/master/adodb.go#L61
even I did a defer rows.Close()
The leaking correlated to number of queries.
here is how I used it. Appreciated your help.
```
rows, err := db.Query(query)
if err != nil {
return nil, err
}
defer rows.Close()
for rows.Next() {
if err := rows.Scan(
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels