> Usually some inscrutable thing involving Send/Sync.
What kind of queries are you writing? I never see SQLx emit anything like that. I always get back SQL errors.
Column mismatches are what I hit most in development, and they're pretty explicit.
The hairiest thing I see with SQLx is when I try to write custom type conversions for my own types to SQL fields. I sometimes have to delve into macros. But those errors are pretty self-explanatory too.
What kind of queries are you writing? I never see SQLx emit anything like that. I always get back SQL errors.
Column mismatches are what I hit most in development, and they're pretty explicit.
The hairiest thing I see with SQLx is when I try to write custom type conversions for my own types to SQL fields. I sometimes have to delve into macros. But those errors are pretty self-explanatory too.