Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make Result iterable #2861

Closed
wants to merge 1 commit into from
Closed

Make Result iterable #2861

wants to merge 1 commit into from

Commits on Nov 14, 2022

  1. Make Result iterable

    Make `Result` automatically iterable, so one can iterate through data without having to access `rows` explicitly:
    
    ```js
    client.query('select...', (err, res) => {
        // below we can use just "res", not "res.rows"
        for(const a of res) {
            console.log(a); // print the row
        }
    })
    ```
    vitaly-t committed Nov 14, 2022
    Configuration menu
    Copy the full SHA
    32109ab View commit details
    Browse the repository at this point in the history