refinery VS sqlx

Compare refinery vs sqlx and see what are their differences.

sqlx

🧰 The Rust SQL Toolkit. An async, pure Rust SQL crate featuring compile-time checked queries without a DSL. Supports PostgreSQL, MySQL, and SQLite. (by launchbadge)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
refinery sqlx
6 145
1,213 11,822
1.8% 2.4%
7.1 9.2
9 days ago 5 days ago
Rust Rust
MIT License Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

refinery

Posts with mentions or reviews of refinery. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-10-01.
  • Database Migrations
    2 projects | news.ycombinator.com | 1 Oct 2023
    Great write up! At PeerDB, we’ve been using refinery https://github.com/rust-db/refinery to handle database migrations of our catalog Postgres database from Rust. It is easy, typesafe and gets the job done. Thought this would be useful for users building apps with Rust!
  • Sqlx, diesel, orm or other sqlx query ?
    3 projects | /r/rust | 18 May 2023
    I don't think migrations need to be tied to ORM. We have refinery that allows you to write migrations in rust. I, personally, didn't like and prefer writing them in SQL - why learn how to migrations in X when you already know the SQL dialect that you're using.
  • Ask HN: ORM or Native SQL?
    10 projects | news.ycombinator.com | 6 Jan 2023
    The best solution I've ever seen is this Rust library https://github.com/cornucopia-rs/cornucopia

    You write plain SQL for you schema (just a schema.sql is enough) and plain SQL functions for your queries. Then it generates Rust types and Rust functions from from that. If you don't use Rust, maybe there's a library like that for your favorite language.

    Optionally, pair it with https://github.com/bikeshedder/tusker or https://github.com/blainehansen/postgres_migrator (both are based off https://github.com/djrobstep/migra) to generate migrations by diffing your schema.sql files, and https://github.com/rust-db/refinery to perform those migrations.

    Now, if you have simple crud needs, you should probably use https://postgrest.org/en/stable/ and not an ORM. There are packages like https://www.npmjs.com/package/@supabase/postgrest-js (for JS / typescript) and probably for other languages too.

    If you insist on an ORM, the best of the bunch is prisma https://www.prisma.io/ - outside of the typescript/javascript ecosystem it has ports for some other languages (with varying degrees of completion), the one I know about is the Rust one https://prisma.brendonovich.dev/introduction

  • New to PostgreSQL - Best way to use it?
    6 projects | /r/PostgreSQL | 25 Jan 2022
    What I personally use here is Refinery, but it's within the Rust ecosystem. It lets you write your migrations in pure SQL - which is what I prefer - but still requires about 5 lines of boilerplate Rust code.
  • Part of SQLx will become proprietary
    5 projects | /r/rust | 1 Feb 2021
    Example refinery migrations

sqlx

Posts with mentions or reviews of sqlx. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-09.

What are some alternatives?

When comparing refinery and sqlx you can also consider the following projects:

serde_postgres - Easily Deserialize Postgres rows.

diesel - A safe, extensible ORM and Query Builder for Rust

postgres_migrator - A postgres migration generator and runner that uses raw declarative sql.

sea-orm - 🐚 An async & dynamic ORM for Rust

pggen - Generate type-safe Go for any Postgres query. If Postgres can run the query, pggen can generate code for it.

tokio - A runtime for writing reliable asynchronous applications with Rust. Provides I/O, networking, scheduling, timers, ...

pgroll - PostgreSQL zero-downtime migrations made easy

rust-postgres - Native PostgreSQL driver for the Rust programming language

tusker - PostgreSQL migration management tool

rbatis - Rust Compile Time ORM robustness,async, pure Rust Dynamic SQL

safeql - Composable / async / functional / type-safe / parallel-pipelined queries and relations without SQL injection or N+1s.

actix-web - Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust.