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 has been 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;"
something like:
fetchAll(query, { UID: 12 }, fn);
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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);
The text was updated successfully, but these errors were encountered: