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
This is very convenient feature. It's present in sqlite-simple package.
sqlite-simple
Consider the following query:
updateUploadHistory :: UTCTime -> m () updateUploadHistory curTime = executeNamed_ [sql| INSERT INTO file_upload_history (file_name, uploader_id, timestamp, data_type, remarks) VALUES (:file, :uploader, :time, :type, :remarks) |] [ ":file" := duFileName , ":uploader" := adminId , ":time" := curTime , ":type" := duDataType , ":remarks" := duRemarks ]
It's much more convenient to write with named arguments (as any other query) because we don't need to care about order in which arguments are passed.
It would be really great, if something like this can be supported in mysql-simple library as well!
mysql-simple
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is very convenient feature. It's present in
sqlite-simple
package.Consider the following query:
It's much more convenient to write with named arguments (as any other query) because we don't need to care about order in which arguments are passed.
It would be really great, if something like this can be supported in
mysql-simple
library as well!The text was updated successfully, but these errors were encountered: