96 I started toying with sqlx (an sql library for rust). The dev managed to do the impossible: typesave sql.
lets say I have the following code:
query!("SELECT id,username,password FROM users WHERE id = $1", 1)
it will construct the correct type at compile time to represent what I selected, if...