Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign upCustom sql function with rust implementation #1877
Comments
This comment has been minimized.
|
This is entirely dependent on how your database works. For SQLite, yes. For other DBs you would need to write an extension for your database server which is outside of the scope of Diesel. |
sgrif
closed this
Oct 7, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
giovanniberti commentedOct 6, 2018
Is it possible to have a rust function/operator calling in SQL/Diesel DSL?
I need it to store and retrieve passwords from a db, and I'm using the
scryptcrate, which has ascrypt_checkfunction, so I can't use the simple.eq()function from diesel's dsl.