this post was submitted on 14 Sep 2024
851 points (99.0% liked)
Programmer Humor
32400 readers
432 users here now
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
- Posts must be relevant to programming, programmers, or computer science.
- No NSFW content.
- Jokes must be in good taste. No hate speech, bigotry, etc.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
just started out rust and made a massive thing with sqlx only to find out the latest versions don't have mssql support anymore and the last version that did doesn't support decoding DateTime<Utc> ๐ญ๐ญ๐ญ
had to rewrite the whole thing again with Tiberius, painful yet educational
Sadly sqlx seems to have gone semi-proprietary with their MSQL driver. Personally never understood the appeal of mssql when there's Postgres and SQLite, but hey, it does work.
I've started using welds as my new ORM of choice as SeaORM and Diesel is just not a friendly experience, and supports Mssql OOB. So it's nice there's still options for it.
@bappity @RustyNova I was stuck on the same thing, there's no way to make it compatible? How do you handle dates?
No idea for Tiberius, but for SQLite I'm stuck with converting to timestamp and back. Ugly but works
P.S. add a getter to your data struct and you can be "seamless"
I switched to using tiberius
bit different but not too hard don't have my code on hand atm but this is how I started with it
then I did something along the lines of