Giter VIP home page Giter VIP logo

Comments (7)

chowey avatar chowey commented on June 28, 2024 1

RETURNING works. It triggers a "row" event just fine.

If you want to use event listeners, then do this:

query.on('row', function (row) {
  // do some stuff
})

Currently the result does not automatically accumulate rows unless you use a callback. If you want to accumulate rows using event listeners, you have to do this:

query.on('row', function (row, result) {
  result.addRow(row);
});
query.on('end', function (result) {
  if (result.rowCount > 0) {
    // RETURNING used
    doSomething(result.rows[0]);
  } else {
    // standard end event
  }
});

This issue could be closed.

from node-postgres.

rwdaigle avatar rwdaigle commented on June 28, 2024

While the FAQ seems to imply that support for INSERT.. RETURNING already exists (https://github.com/brianc/node-postgres/wiki/FAQ), that does not seem to be the case. The callback function is never called on non-error results (according to my scenarios).

from node-postgres.

hyusetiawan avatar hyusetiawan commented on June 28, 2024

I have the same experience, have to resort to using CURRVAL to get the last insert id :/ which is 1 extra query

from node-postgres.

booo avatar booo commented on June 28, 2024

Seems like the "INSERT... RETURNING" statement only works with a callback and not with event listeners. Take a look at this gist https://gist.github.com/1662362 for a working example.

query.on('end', function(row) {
   if(row) {
      // RETURNING uesd
   }
   else {
     // standard end event
   }
});

Keep in mind that the statement can return multiple values. Either change it to query.on('end', function(rows)... or use the row event if you add this feature.

Regards
Philipp

from node-postgres.

rwdaigle avatar rwdaigle commented on June 28, 2024

This is great to know.
For clarity item 7 in the FAQ should be updated, however: https://github.com/brianc/node-postgres/wiki/FAQ

from node-postgres.

chowey avatar chowey commented on June 28, 2024

Cool, I updated it.

(It is a wiki after all.)

from node-postgres.

brianc avatar brianc commented on June 28, 2024

Thank you! ❤️

from node-postgres.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.