You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to insert or update or ... by not manually mentioning all the columns and get the input from a struct?
If not, is there any plan to add this feature?
For example, instead of:
sqlx::query_as("INSERT INTO todo (description, done) VALUES ($1, $2)")
.bind(&todo.description)
.bind(todo.done)
.await?;