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
The commit changes how parameters are passed to dbi:execute (as explained here)
For my use cases changing apply to funcall in the meta-query macro fixed the problem.
apply
funcall
meta-query
(defmacro meta-query (query database-name body) `(multiple-value-bind (sql args) (sxql:yield ,query) (when (crane.config:debugp) (format t "~&Query: ~A~&" sql)) (let* ((prepared (dbi:prepare (crane.connect:get-connection ,database-name) sql)) (result (funcall #'dbi:execute prepared args))) (when result ,body))))
I am not sure if this is all it takes to fix this problem. I hope it is fixed soon.
And thanks for this nice library. :)
The text was updated successfully, but these errors were encountered:
eudoxia0
No branches or pull requests
The commit changes how parameters are passed to dbi:execute (as explained here)
For my use cases changing
apply
tofuncall
in themeta-query
macro fixed the problem.I am not sure if this is all it takes to fix this problem. I hope it is fixed soon.
And thanks for this nice library. :)
The text was updated successfully, but these errors were encountered: