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
// Make a simple query to return the given parameter
let rows = sqlx::query!(r#"
SELECT * FROM pc.rakuten_catalog
"#)
.fetch_all(&pool)
.await?;
println!("rows {:?}", rows);
But I get
error: unsupported type rakuten_url of column #7 ("url")
Hello again.
I'm trying to run the following query:
But I get
I tried:
But sqlx still can't detect my type, what am I missing?
The text was updated successfully, but these errors were encountered: