#sqlx search results
how to set connection string such as sessionVariables=transaction_isolation='READ-COMMITTED' using sqlx in Golang stackoverflow.com/questions/6425… #go #mysql #sqlx
Loving @golang ! With #goswagger and #sqlx it is so much faster and too little code that you might have to write to implement the business logic.
When sqlx::query_as!() tells you compile-time that you don't have a DB connection! #rustlang #sqlx #query_as #macro #compiletime #warnings
How can anyone introduce a dependency in an unaudited CLI tool that doesn't even bother to explain the SIDE EFFECTS in the README, you have to search the code to see the schema of a table it is creating in your database. I'm just a hater on poorly documented code #sqlx #Rust
How to get id of last inserted row from sqlx? stackoverflow.com/questions/5399… #sqlx #sqlinsert #go #mysql #sql
"#sqlx can make your life easier, and if you don't need a whole ORM library in your #Golang code" - @rettetdemdativ #programming #webdev #code #WebServices
DB errors in compile-time error in #rustlang when #sqlx finds incorrect query, like database name misspelled. #neovim #compiletime #warnings #errors
This is how we roll with #rustlang! #sqlx showing that a table name is misspelled in the query, and the table doesn't exist. Of course, the code doesn't build. #neovim #compiletime #warnings
Now #sqlx support batch insert #golang github.com/jmoiron/sqlx/p…
This is how we roll with #rustlang! #sqlx showing that a table name is misspelled in the query, and the table doesn't exist. Of course, the code doesn't build. #neovim #compiletime #warnings
Phase 3 of my JPMorgan Chase Forage Rust backend is complete! Real-time Kafka → SQLite pipeline in Rust. No Spring, no JPA — just async Rust 🦀 🔗 github.com/ManthanN75/JPM… #rustlang #kafka #sqlx #backend #forage #opensource #JPMorgan
I'm super proud of #SQLx getting included in @JetBrains RustRover! Austin is killing it! github.com/launchbadge/sq… @rustlang
🚀 My first completed project in Rust! Built a simple Todo List with Hexagonal Architecture + full CRUD. 🦀 Backend: Axum 🗄️ DB: PostgreSQL with SQLx 📦 Easy to run with Dockerfile Check it out 👉 github.com/M0o4/todo_list… #rustlang #axum #sqlx #hexagon #opensource
github.com
GitHub - M0o4/todo_list_hexagon
Contribute to M0o4/todo_list_hexagon development by creating an account on GitHub.
Been building an API Server using #Tide and #sqlx with @rustlang. Super nice. The server is only using 2mb of ram. So crazy.
Standalone reflection library driving #sqlx and @ScyllaDB #gocqlx github.com/scylladb/go-re… automate manual binding everywhere with cached #reflection #golang
Phase 3 of my JPMorgan Chase Forage Rust backend is complete! Real-time Kafka → SQLite pipeline in Rust. No Spring, no JPA — just async Rust 🦀 🔗 github.com/ManthanN75/JPM… #rustlang #kafka #sqlx #backend #forage #opensource #JPMorgan
I'm super proud of #SQLx getting included in @JetBrains RustRover! Austin is killing it! github.com/launchbadge/sq… @rustlang
Déployez gratuitement vos backends en #rust avec @shuttle_dev pour vos projets perso ! Compatible avec entre autres #Axum et #Sqlx ! dotmobo.github.io/shuttle-rs.htm… #dev
【编程实录 | Rust】通过 SQLx 异步操作 SQLite 数据库【星ノ谷雪風】(变声器) bilibili.com/video/BV1Gb421… #Rust #SQLx #Toxio #SQLite3
Using rust sqlx::test makes unit test much easier. So I write a blog about it. blog.yuki-dev.com/blogs/g559re-x… #rust #sqlx
blog.yuki-dev.com
Using sqlx::test for unit testing make much easier to test
I use to prepare test database and connection by my self. But sqlx provides sqlx::test macro which creates test DB and live connection for us automatically and it makes unit test much easier.
Rust sqlx::test が unit test で自動でテスト用のDBを作成してくれて便利だったのでブログにしました。 blog.yuki-dev.com/blogs/z_mti4sq… #rust #sqlx
blog.yuki-dev.com
Rust sqlx::test がユニットテストに便利だった。テストDBを自動で用意。
レポジトリ層などのDB接続が必要な時にユニットテストを書くためにはテスト用のコネクションやデータベースを用意する必要があり面倒でしたが sqlx::test が解決してくれたのでブログにまとめました。
rust sqlx の #[sqlx::test] めちゃくちゃ便利。Test用のdb connectionを勝手に作成してくれて、テストドロップ時には rollbackもしてくれてテスト用のDI用意しなくてもテストかけるから楽 #rust #sqlx docs.rs/sqlx/latest/sq…
#NoORM #ftw These days I'm using #sqlx in #Rust (getting compile-time validation) + the various "chatgpt" tools helping to write both the raw SQL and the boilerplate-y code. Even with the "you need to beat the AIs into submission", it's better than all of the extra BS from ORMs.
Is it just me that straight up prefers raw dogging SQL over using an ORM?
I cannot stress how good working in rust was, once we got up to speed. Sure, we hit the occasional lifetime/async issue, but overall? So dang good. #rust #htmx #sqlx
#SQL question: Why do we have this syntax order [expression] AS [alias] for renaming tables and columns, but for common table expressions, we have this syntax order WITH [alias] AS [expression] ? 🧐 #SQLtwitter #SQLx
DB errors in compile-time error in #rustlang when #sqlx finds incorrect query, like database name misspelled. #neovim #compiletime #warnings #errors
This is how we roll with #rustlang! #sqlx showing that a table name is misspelled in the query, and the table doesn't exist. Of course, the code doesn't build. #neovim #compiletime #warnings
This is how we roll with #rustlang! #sqlx showing that a table name is misspelled in the query, and the table doesn't exist. Of course, the code doesn't build. #neovim #compiletime #warnings
how to set connection string such as sessionVariables=transaction_isolation='READ-COMMITTED' using sqlx in Golang stackoverflow.com/questions/6425… #go #mysql #sqlx
Loving @golang ! With #goswagger and #sqlx it is so much faster and too little code that you might have to write to implement the business logic.
How to get id of last inserted row from sqlx? stackoverflow.com/questions/5399… #sqlx #sqlinsert #go #mysql #sql
How can anyone introduce a dependency in an unaudited CLI tool that doesn't even bother to explain the SIDE EFFECTS in the README, you have to search the code to see the schema of a table it is creating in your database. I'm just a hater on poorly documented code #sqlx #Rust
When sqlx::query_as!() tells you compile-time that you don't have a DB connection! #rustlang #sqlx #query_as #macro #compiletime #warnings
"#sqlx can make your life easier, and if you don't need a whole ORM library in your #Golang code" - @rettetdemdativ #programming #webdev #code #WebServices
DB errors in compile-time error in #rustlang when #sqlx finds incorrect query, like database name misspelled. #neovim #compiletime #warnings #errors
This is how we roll with #rustlang! #sqlx showing that a table name is misspelled in the query, and the table doesn't exist. Of course, the code doesn't build. #neovim #compiletime #warnings
Phase 3 of my JPMorgan Chase Forage Rust backend is complete! Real-time Kafka → SQLite pipeline in Rust. No Spring, no JPA — just async Rust 🦀 🔗 github.com/ManthanN75/JPM… #rustlang #kafka #sqlx #backend #forage #opensource #JPMorgan
I'm super proud of #SQLx getting included in @JetBrains RustRover! Austin is killing it! github.com/launchbadge/sq… @rustlang
This is how we roll with #rustlang! #sqlx showing that a table name is misspelled in the query, and the table doesn't exist. Of course, the code doesn't build. #neovim #compiletime #warnings
Something went wrong.
Something went wrong.
United States Trends
- 1. Jonathan Taylor 18.5K posts
- 2. Falcons 30K posts
- 3. Colts 49.3K posts
- 4. Kyle Williams 4,187 posts
- 5. Daniel Jones 9,778 posts
- 6. Penix 10.5K posts
- 7. Parker Washington 2,032 posts
- 8. Bijan 6,539 posts
- 9. #Browns 1,851 posts
- 10. Joe Brady 1,099 posts
- 11. Liverpool 206K posts
- 12. Max B 23.2K posts
- 13. Raheem Morris 4,733 posts
- 14. Mooney 4,076 posts
- 15. #ForTheShoe 3,693 posts
- 16. Bubba Ventrone N/A
- 17. Tyler Warren 2,319 posts
- 18. #DawgPound 1,385 posts
- 19. Doku 72.6K posts
- 20. Darius Slayton N/A