MUST know Rust database libraries

Поділитися
Вставка
  • Опубліковано 11 лип 2024
  • 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  Рік тому +6

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

  • @d.sherman8563
    @d.sherman8563 Рік тому +16

    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 Рік тому +28

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

    • @ngxtmvre.9261
      @ngxtmvre.9261 Рік тому +1

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

    • @codelearner4449
      @codelearner4449 Рік тому +1

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

  • @marcomarek7734
    @marcomarek7734 Рік тому +1

    Great content as always. Love u Bogdan!

  • @honglouis
    @honglouis Рік тому +1

    well done! went above and beyond.

  • @hamzasouidi7161
    @hamzasouidi7161 Рік тому +2

    amazing content 💯🙏

  • @emvdl
    @emvdl Рік тому +4

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

  • @EngineerNick
    @EngineerNick Рік тому

    Always awesome :)

  • @juancarloselorriaga6171
    @juancarloselorriaga6171 Рік тому +1

    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.

  • @murilosalomao
    @murilosalomao Рік тому +13

    Is this a Déjà vu?

  • @polar_dev
    @polar_dev Рік тому +5

    Check out Prisma Client Rust as a Rust ORM!

  • @dluxdoggdlux
    @dluxdoggdlux Рік тому

    Already liked before the video started playing!

  • @cedricschacht9445
    @cedricschacht9445 Рік тому +11

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

  • @ksediting6883
    @ksediting6883 Місяць тому

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

  • @PhosphorusMoscu-code
    @PhosphorusMoscu-code Рік тому +3

    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.

  • @KurtSchwind
    @KurtSchwind Рік тому +6

    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 Рік тому +2

      @@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.

  • @vitorssmontes
    @vitorssmontes Рік тому +1

    Is there one with JDBC support?

  • @guidyouguy7306
    @guidyouguy7306 Рік тому +1

    can you write the pool as all your live code ?

  • @Elduque40
    @Elduque40 Рік тому

    Didn't you publish this some days ago?

  • @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 Рік тому +1

      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.

  • @vitasartemiev
    @vitasartemiev Рік тому

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

  • @implrust
    @implrust Рік тому +2

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

  • @0xccd
    @0xccd Рік тому +1

    now one for NoSQL dbs

  • @vietle1479
    @vietle1479 Рік тому +1

    I hope it has lib support for H2SQL

  • @hamu_sando
    @hamu_sando Рік тому

    Don't forget RocksDB Rust bindings.

  • @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.

  • @MrZiyak99
    @MrZiyak99 Рік тому +1

    is there anythig for rust like SQLC for GO?

    • @TRK--xk7bb
      @TRK--xk7bb Рік тому

      YES please! Something like sqlc would be ideal

  • @francescopigozzi7601
    @francescopigozzi7601 Рік тому +6

    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 🙌

  • @theondono
    @theondono Рік тому +2

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

    • @implrust
      @implrust Рік тому

      tiberius supports mssql, try this.

  • @Merovingio
    @Merovingio Рік тому

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

  • @itachi2011100
    @itachi2011100 Рік тому +1

    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

  • @brendon205
    @brendon205 Рік тому +4

    Reupload?

    • @letsgetrusty
      @letsgetrusty  Рік тому +10

      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 Рік тому +1

    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

  • @ykonghao318
    @ykonghao318 Рік тому

    rbatis?

  • @yokebabjr3866
    @yokebabjr3866 Рік тому +1

    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 Рік тому +1

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

    • @svelterust
      @svelterust Рік тому

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

    • @RenderingUser
      @RenderingUser Рік тому +1

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

    • @svelterust
      @svelterust Рік тому

      @@RenderingUser Sweet 👍

  • @naddar
    @naddar Рік тому +2

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

  • @SpeckyYT
    @SpeckyYT Рік тому

    I'm having a dejavù

  • @quantumcube3629
    @quantumcube3629 Рік тому +1

    First comment 🎉

  • @ygjt76v0-----
    @ygjt76v0----- Рік тому

    Rust to complicated compare golang

  • @31redorange08
    @31redorange08 Рік тому +5

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