Last active
September 7, 2024 20:02
-
-
Save hendi/3ff7f988a51125d757095d5fd2a8c216 to your computer and use it in GitHub Desktop.
Rust: rocket with sqlx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#[macro_use] extern crate rocket; | |
use std::env; | |
use anyhow::Result; | |
use rocket::State; | |
use rocket::http::Status; | |
use sqlx::{Pool, Postgres}; | |
use sqlx::postgres::PgPoolOptions; | |
#[derive(Debug)] | |
pub struct User { | |
pub id: i32, | |
pub name: String, | |
} | |
impl User { | |
pub async fn find_by_id(id: i32, pool: &Pool<Postgres>) -> Result<User> { | |
let user = sqlx::query_as!(User, "SELECT * FROM my_table WHERE id = $1", id) | |
.fetch_one(&*pool) | |
.await?; | |
Ok(user) | |
} | |
} | |
#[get("/<id>")] | |
async fn hello(pool: State<'_, Pool<Postgres>>, id: i32) -> Result<String, Status> { | |
let user = User::find_by_id(id, &pool).await; | |
match user { | |
Ok(user) => Ok(format!("Hello {}!", &user.name)), | |
_ => Err(Status::NotFound) | |
} | |
} | |
#[rocket::main] | |
async fn main() -> Result<()> { | |
let database_url = env::var("DATABASE_URL")?; | |
let pool = PgPoolOptions::new() | |
.max_connections(5) | |
.connect(&database_url) | |
.await?; | |
rocket::ignite() | |
.mount("/", routes![hello]) | |
.manage(pool) | |
.launch() | |
.await?; | |
Ok(()) | |
} |
What version of rocket does this use?
Line 30 doesn't compile unless I change it to &State<Pool<Postgres>>
Hi there 😊
This just saved my day. Where do I add create table if not exists.
Line 30 doesn't compile unless I change it to
&State<Pool<Postgres>>
Been trying to figure out what to change this to for a while, this worked thanks!!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Many thanks for this gist 🙇