We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Version: 0.78.0 via npm install sql
0.78.0
npm install sql
As a consequence of the nodes getter , https://github.com/brianc/node-sql/blob/master/lib/table.js#L253 (but for the npm install it is table.js:L48),
nodes
Table.prototype.__defineGetter__("nodes", function() {
if one runs e.g.
const sql = require("sql"); var tbl = new sql.Table({}); tbl.addColumn("nodes");
it will throw
table.js:124 Uncaught TypeError: Cannot set property nodes of #<Table> which has only a getter(…)
as it tries to call, in https://github.com/brianc/node-sql/blob/master/lib/table.js#L124
this[property] = this[property] || col;
To get around this, one can run
tbl.columns.push(tbl.createColumn("nodes")) tbl.columns[0].name // "nodes"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Version:
0.78.0
vianpm install sql
As a consequence of the
nodes
getter , https://github.com/brianc/node-sql/blob/master/lib/table.js#L253 (but for the npm install it is table.js:L48),Table.prototype.__defineGetter__("nodes", function() {
if one runs e.g.
it will throw
as it tries to call, in https://github.com/brianc/node-sql/blob/master/lib/table.js#L124
To get around this, one can run
The text was updated successfully, but these errors were encountered: