MUST know Rust database libraries

Ғылым және технология

Today we'll be discussing the 5 must know Rust database libraries.
FREE Rust Cheat Sheet: letsgetrusty.com/cheatsheet
Chapters:
0:00 Intro
0:22 Database drivers
0:47 postgres
1:04 sled
1:40 sqlx
2:08 ORMs
2:50 diesel
3:15 sea-orm
3:50 - Connection pools
4:18 - r2d2
4:43 - Use cases

Пікірлер: 61

  • @letsgetrusty
    @letsgetrusty Жыл бұрын

    📝Get your *FREE Rust cheat sheet* : www.letsgetrusty.com/cheatsheet

  • @d.sherman8563
    @d.sherman8563 Жыл бұрын

    It's difficult to overstate how awesome sqlx is. I find it really reduces the need for an ORM, since one of the main reasons for an ORM is the ease of mapping queries to static types. Sqlx will at compile time check that the actual result from the underlying database matches the rust type you are trying to select into. This means that you immediately get type errors on save if the struct you are selecting into does not match the datatypes actually returned from the database, with extremely clear errors as to what is wrong. For example if your struct has a property with a String type, but the backing database field is Nullable, it will, on save, right after you wrote the line, tell you that you should change it to an Option field. Same for if you try and select fields or relations, do joins etc on fields / tables that don't exist, instant clear and helpful error messages. You're queries are not altered in any way or checked by the library, it actually executes the query your wrote against the underlying database and uses what the database returns to show the error message. This only happens at compile time, and it also lets you reference a .sql file instead of writing the query inline with the same functionality. Locally you run it against your dev database, and it provides an option to generate metadata in the project to use in environments where you don't have a real db connection, say for CI environments. On top of that it also has migration management options. The syntax is along the lines of let user = sqlx::query_as!(User, "SELECT id, name, age FROM users WHERE id = $1", id).await?; Where the first argument is a rust struct and the return value is a User struct.

  • @codelearner4449
    @codelearner4449 Жыл бұрын

    So happy to see you back, with your original persona and voice.

  • @ngxtmvre.9261

    @ngxtmvre.9261

    Жыл бұрын

    yo I kinda missed that video, could anyone tell me what was in there? got sorta curious at this point

  • @codelearner4449

    @codelearner4449

    Жыл бұрын

    There was a voiceover from some voiceover artist. Almost same video.

  • @marcomarek7734
    @marcomarek7734 Жыл бұрын

    Great content as always. Love u Bogdan!

  • @juancarloselorriaga6171
    @juancarloselorriaga6171 Жыл бұрын

    Would you recommend sled for a Tauri desktop app? The app will be mostly saving data to the disk, some files and database backup or sync in the cloud.

  • @KurtSchwind
    @KurtSchwind Жыл бұрын

    Most of the places I consult with consider ORMs to be an anti-pattern. Everyone that works with databases needs to know SQL anyway (or should), so adding an ORM layer can obscure work. Also, you have to manage an ORM translation layer. It's a lot of extra tech and while some people swear by the boost in productivity other places are just saying it's an anti-pattern and telling folks to work in SQL directly.

  • @ollydix

    @ollydix

    Жыл бұрын

    ORM really helps type checking though, for example if you have struct modifications you will get errors using vanilla SQL. Also helps you prevent injection attacks amongst other things. Also you get enforced validators on object for complex types. I know using Zod in combination with Sequlize was really good in TS.

  • @georgehelyar

    @georgehelyar

    Жыл бұрын

    There are pros and cons. I kind of think of ORMs a bit like high level languages. ORMs are fine to develop quickly, particularly if you are just writing CRUD APIs etc, and they can also help write database migrations for when you need to change the schema, but sometimes you need fine grained control of the SQL you are executing to tweak performance, and ORMs tend to make that harder. I don't tend to use ORMs because SQL isn't that hard in the first place, it tends to be written once and then mostly left alone while consumers can use the functions without having to know how they work, and sooner or later you will probably need the control that direct SQL gives in order to scale, but I can see why some people like ORMs. To avoid SQL injection you just need parameterized commands, and to check your code does what you think it does, just write tests.

  • @d.sherman8563

    @d.sherman8563

    Жыл бұрын

    @@ollydix Sqlx type checks your queries against the actual underlying database at compile time. It will execute the query you wrote and use the information returned from the database to give you extremely clear error messages. This is done via a macro and it runs every time you save so you get instant feedback if anything is wrong with your query.

  • @polar_dev
    @polar_dev Жыл бұрын

    Check out Prisma Client Rust as a Rust ORM!

  • @honglouis
    @honglouis Жыл бұрын

    well done! went above and beyond.

  • @hamzasouidi7161
    @hamzasouidi7161 Жыл бұрын

    amazing content 💯🙏

  • @cedricschacht9445
    @cedricschacht9445 Жыл бұрын

    Do you have any plans about a surreal db tutorial playlist?

  • @damonguzman

    @damonguzman

    Жыл бұрын

    Omg yes!

  • @PhosphorusMoscu-code
    @PhosphorusMoscu-code Жыл бұрын

    I met rbdc today, a Chinese ORM? I'm not sure, but it's fast, easy and flexible. Problems? Well, the biggest problem is the little documentation and the Github issues are in Chinese and not in English. I suggest checking it, for me it is a great solution for database connections, maybe I will help it to write documentation.

  • @murilosalomao
    @murilosalomao Жыл бұрын

    Is this a Déjà vu?

  • @letsgetrusty

    @letsgetrusty

    Жыл бұрын

    It's a glitch in the matrix

  • @emvdl
    @emvdl Жыл бұрын

    Thanks man! You look a bit tired, take care 💪

  • @EngineerNick
    @EngineerNick Жыл бұрын

    Always awesome :)

  • @ksediting6883
    @ksediting6883Ай бұрын

    please make full video on diesel and sql so we can understand setup and grow

  • @dluxdoggdlux
    @dluxdoggdlux Жыл бұрын

    Already liked before the video started playing!

  • @vitasartemiev
    @vitasartemiev Жыл бұрын

    actually, diesel has an async extension. diesel-async on cargo, from the same team.

  • @vitorssmontes
    @vitorssmontes Жыл бұрын

    Is there one with JDBC support?

  • @arcstur
    @arcstur Жыл бұрын

    Awesome video! A question: what was that "NoTls" in the Postgres database connections?

  • @ejon

    @ejon

    Жыл бұрын

    Unencrypted connection

  • @pvinnie3827

    @pvinnie3827

    Жыл бұрын

    Its possible to connect with encryption also with some additional crate

  • @everestshadow

    @everestshadow

    Жыл бұрын

    Tls requires a different Rust type of socket than plain TCP. And in order to generic over different types "NoTls" serves as the placeholder type that is used for plain TCP.

  • @guidyouguy7306
    @guidyouguy7306 Жыл бұрын

    can you write the pool as all your live code ?

  • @everestshadow
    @everestshadow Жыл бұрын

    diesel is not inferior by lack of async. In fact it can perform much better than those so called "async" ORM with a much easier to reason with api.

  • @Elduque40
    @Elduque40 Жыл бұрын

    Didn't you publish this some days ago?

  • @implrust
    @implrust Жыл бұрын

    consider tiberius for ms sql server, and MongoDB has direct driver for rust. why you left it

  • @0xccd
    @0xccd Жыл бұрын

    now one for NoSQL dbs

  • @francescopigozzi7601
    @francescopigozzi7601 Жыл бұрын

    Hey there! 👋 I think you missed a couple of honourable mentions: Prisma is a pretty cool ORM for JS but has its engine entirely written in Rust, maybe they’ve released it in a public crate. Also, worth to note that the devs from Prisma have released a very powerful fork of mobc, an alternative to r2d2. Please, take a look at those 🙌

  • @vietle1479
    @vietle1479 Жыл бұрын

    I hope it has lib support for H2SQL

  • @hamu_sando
    @hamu_sando Жыл бұрын

    Don't forget RocksDB Rust bindings.

  • @Merovingio
    @Merovingio Жыл бұрын

    Bro, amazing channel. Would you talk about briefly about Cryptocurrency and Rust?

  • @theondono
    @theondono Жыл бұрын

    My only pain is that none of those support mssql databases😢

  • @implrust

    @implrust

    Жыл бұрын

    tiberius supports mssql, try this.

  • @itachi2011100
    @itachi2011100 Жыл бұрын

    BTree and Binary Tree are two very very very different data structures. Could you please pin a comment with the correction or re-upload? BTrees are hierarchical data structure designed for near constant time lookups as well as range lookups. Binary Tree are binary trees.

  • @chair547

    @chair547

    Жыл бұрын

    They aren't as different as you seem to think they are.. A b tree is a hybrid between a linear array and a binary search tree that has the advantages of both and the drawbacks of neither

  • @MrZiyak99
    @MrZiyak99 Жыл бұрын

    is there anythig for rust like SQLC for GO?

  • @TRK--xk7bb

    @TRK--xk7bb

    Жыл бұрын

    YES please! Something like sqlc would be ideal

  • @brendon205
    @brendon205 Жыл бұрын

    Reupload?

  • @letsgetrusty

    @letsgetrusty

    Жыл бұрын

    Yea. Updated the video based on feedback and re-uploaded.

  • @thingsiplay

    @thingsiplay

    Жыл бұрын

    @@letsgetrusty But in the other video a different guy was speaking.

  • @aghileslounis
    @aghileslounis Жыл бұрын

    for a web server we absolutely need the "connection pool" no ? but i'm surprised the ORM does not handle this already little bit strange that every time i do User.insert() a new connection need to be made first, because we should connect to the database once, when we start the app, this is what we do in nodejs for example and any other programming language i used, but i guess Rust is very low level that's why (i'm trying to learn rust and i'm a typescript fullstack developer)

  • @everestshadow

    @everestshadow

    Жыл бұрын

    no. you dont always need a connection pool. if your db interface support pipelining and multiplexing. think of it like the difference between http1 and http2/3

  • @yokebabjr3866
    @yokebabjr3866 Жыл бұрын

    I think in your exemples you should you use "?" instead of unwrap for showing good practicies

  • @enticey

    @enticey

    Жыл бұрын

    You'll see .unwrap() or .expect() used in examples more often because it allows whoever is teaching to focus on what's important itself and reduces cognitive load on the listeners.

  • @RenderingUser

    @RenderingUser

    Жыл бұрын

    I once wrote a piece of code with 3 chained unwrap methods

  • @svelterust

    @svelterust

    11 ай бұрын

    @@RenderingUser Perhaps you needed to use the .and_then() method 😄

  • @RenderingUser

    @RenderingUser

    11 ай бұрын

    @@svelterust dw. I fixed that piece of code by properly structuring my project.

  • @svelterust

    @svelterust

    11 ай бұрын

    @@RenderingUser Sweet 👍

  • @SpeckyYT
    @SpeckyYT Жыл бұрын

    I'm having a dejavù

  • @naddar
    @naddar Жыл бұрын

    Why is it that there is barely any support for the most important and wide-spread database - the microsoft sql server ?

  • @quantumcube3629
    @quantumcube3629 Жыл бұрын

    First comment 🎉

  • @ykonghao318
    @ykonghao318 Жыл бұрын

    rbatis?

  • @ygjt76v0-----
    @ygjt76v0----- Жыл бұрын

    Rust to complicated compare golang

  • @31redorange08
    @31redorange08 Жыл бұрын

    Why are particularly these MUST know? Some of them seem irrelevant. Clickbait?

Келесі