You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 9, 2017. It is now read-only.
Perl's DBI module supports named bind parameters instead of ordered ? marks.
Is node-dbi trying to be like perl's DBI and would it be possible to have named bind parameters?
query: "SELECT count(*) as num_posters FROM posters WHERE uid < :UID;"
Perl's DBI module supports named bind parameters instead of ordered ? marks.
Is node-dbi trying to be like perl's DBI and would it be possible to have named bind parameters?
query: "SELECT count(*) as num_posters FROM posters WHERE uid < :UID;"
something like:
fetchAll(query, { UID: 12 }, fn);