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
Is there a way to use custom sql queries like the query method in the Sails documentation? Here is a link to the documentation I am referring to: http://sailsjs.com/documentation/reference/waterline-orm/models/query
The text was updated successfully, but these errors were encountered:
I'd like to know that too.
But it looks like no one os maintaining this adapter anymore :(
Sorry, something went wrong.
I was able to fix this by adding this function to lib/adapter.js at line 389
query(connectionName, collection, collectionName, queryObj, cb) { this.datastore.adapter.executeQuery(connectionName, queryObj, function (err, results) { if ( err) return cb(err); cb(null, results && results.rows); }); },
You can call it like this. Model.query({ sql: sql, params { term: term } }, function callback(err, results) { ... });
Model.query({ sql: sql, params { term: term } }, function callback(err, results) { ... });
No branches or pull requests
Is there a way to use custom sql queries like the query method in the Sails documentation? Here is a link to the documentation I am referring to: http://sailsjs.com/documentation/reference/waterline-orm/models/query
The text was updated successfully, but these errors were encountered: