MUST know Rust database libraries

Поделиться
HTML-код
  • Опубликовано: 9 фев 2025

Комментарии • 63

  • @letsgetrusty
    @letsgetrusty  2 года назад +6

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

  • @d.sherman8563
    @d.sherman8563 Год назад +25

    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 2 года назад +32

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

    • @ngxtmvre.9261
      @ngxtmvre.9261 2 года назад +1

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

    • @codelearner4449
      @codelearner4449 2 года назад +1

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

  • @KurtSchwind
    @KurtSchwind 2 года назад +7

    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 2 года назад

      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 2 года назад

      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 Год назад +3

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

  • @PhosphorusMoscu-code
    @PhosphorusMoscu-code 2 года назад +2

    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.

  • @cedricschacht9445
    @cedricschacht9445 2 года назад +12

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

  • @emvdl
    @emvdl 2 года назад +4

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

  • @polar_dev
    @polar_dev 2 года назад +5

    Check out Prisma Client Rust as a Rust ORM!

  • @m12652
    @m12652 4 месяца назад

    I've been coding nearly 40 years, SQL and SQL databases are one of the simplest things to learn, you just have to put in the time. I don't get why anyone bothers with an ORM these days, most of them write really bad sql in respect to processor and memory usage etc. so ultimately result in much higher running costs, particularly if you're paying by resource usage.

  • @ksediting6883
    @ksediting6883 8 месяцев назад

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

  • @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 2 года назад +14

    Is this a Déjà vu?

  • @marcomarek7734
    @marcomarek7734 2 года назад +1

    Great content as always. Love u Bogdan!

  • @jermeekable
    @jermeekable Месяц назад

    diesel has async now .. i like it betterr than sql cause i can box queries to be dynamic instead of must be known at compile time with sqlx

  • @honglouis
    @honglouis Год назад +1

    well done! went above and beyond.

  • @vitasartemiev
    @vitasartemiev Год назад

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

  • @hamzasouidi7161
    @hamzasouidi7161 2 года назад +2

    amazing content 💯🙏

  • @dluxdoggdlux
    @dluxdoggdlux 2 года назад

    Already liked before the video started playing!

  • @realsong-fake
    @realsong-fake 2 года назад

    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.

  • @implrust
    @implrust 2 года назад +2

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

  • @0xccd
    @0xccd 2 года назад +1

    now one for NoSQL dbs

  • @francescopigozzi7601
    @francescopigozzi7601 2 года назад +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 🙌

  • @vitorssmontes
    @vitorssmontes 2 года назад

    Is there one with JDBC support?

  • @vietle1479
    @vietle1479 2 года назад +1

    I hope it has lib support for H2SQL

  • @guidyouguy7306
    @guidyouguy7306 2 года назад

    can you write the pool as all your live code ?

  • @arcstur
    @arcstur 2 года назад

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

    • @ejon
      @ejon 2 года назад

      Unencrypted connection

    • @pvinnie3827
      @pvinnie3827 2 года назад

      Its possible to connect with encryption also with some additional crate

    • @realsong-fake
      @realsong-fake 2 года назад +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.

  • @hamu_sando
    @hamu_sando 2 года назад

    Don't forget RocksDB Rust bindings.

  • @EngineerNick
    @EngineerNick 2 года назад

    Always awesome :)

  • @MrZiyak99
    @MrZiyak99 2 года назад +1

    is there anythig for rust like SQLC for GO?

    • @TRK--xk7bb
      @TRK--xk7bb 2 года назад

      YES please! Something like sqlc would be ideal

  • @Elduque40
    @Elduque40 2 года назад

    Didn't you publish this some days ago?

  • @theondono
    @theondono 2 года назад +2

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

    • @implrust
      @implrust 2 года назад

      tiberius supports mssql, try this.

  • @itachi2011100
    @itachi2011100 2 года назад +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 2 года назад

      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

  • @Merovingio
    @Merovingio 2 года назад

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

  • @brendon205
    @brendon205 2 года назад +4

    Reupload?

    • @letsgetrusty
      @letsgetrusty  2 года назад +10

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

    • @thingsiplay
      @thingsiplay 2 года назад

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

  • @aghileslounis
    @aghileslounis 2 года назад +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)

    • @realsong-fake
      @realsong-fake 2 года назад

      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 2 года назад +1

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

    • @enticey
      @enticey 2 года назад

      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 2 года назад +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 👍

  • @ykonghao318
    @ykonghao318 2 года назад

    rbatis?

  • @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 2 года назад

    I'm having a dejavù

  • @quantumcube3629
    @quantumcube3629 2 года назад +1

    First comment 🎉

  • @ygjt76v0-----
    @ygjt76v0----- 2 года назад

    Rust to complicated compare golang

  • @31redorange08
    @31redorange08 2 года назад +6

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