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
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,8 @@ function doRead(cb) {
// recurse to read next record
return doRead(cb)
} else {
// only query? be sure to close the connection
//connection.close();
// we are done
return cb();
}
Expand Down Expand Up @@ -244,6 +246,8 @@ function doInsert(stmt, records, cb) {
doInsert(stmt, records, cb);
});
} else {
// only query? be sure to close the connection
//connection.close();
// we are done
return cb();
}
Expand Down