diesel-oci VS postgres_migrator

Compare diesel-oci vs postgres_migrator and see what are their differences.

diesel-oci

A backend implementation for diesel (https://github.com/diesel-rs/diesel) for oracle sql database. (by GiGainfosystems)

postgres_migrator

A postgres migration generator and runner that uses raw declarative sql. (by blainehansen)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
diesel-oci postgres_migrator
2 7
16 78
- -
5.8 5.1
3 months ago 3 months ago
Rust Rust
Apache License 2.0 MIT License
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.

diesel-oci

Posts with mentions or reviews of diesel-oci. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-26.
  • Diesel 2.1
    5 projects | /r/rust | 26 May 2023
    I've now update one of the custom connection implementations my company maintains: https://github.com/GiGainfosystems/diesel-oci/pull/49 That should give you an impression what needs to be done there. Feel free to reach out if you have questions.
  • MSSQL and Rust
    4 projects | /r/rust | 19 Jan 2022
    That all written: Diesel is structured in such a way that you can implement support for another database as third party crate. There are already crates for oracle support and firebird support out there. Writing a similar crate to add support for MSSQL is definitively possible.

postgres_migrator

Posts with mentions or reviews of postgres_migrator. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-02.
  • We built our customer data warehouse all on Postgres
    16 projects | news.ycombinator.com | 2 Feb 2024
    Thanks! Yeah definitely agree that building out declarative table management for Postgres would be a major effort. A few open source projects I've seen in that area include:

    https://github.com/sqldef/sqldef (Go)

    https://github.com/bikeshedder/tusker (Python but being ported to Rust)

    https://github.com/tyrchen/renovate (Rust)

    https://github.com/blainehansen/postgres_migrator (Rust)

    Some of these are based on parsing SQL, and others are based on running the CREATEs in a temporary location and introspecting the result.

    The schema export side can be especially tricky for Postgres, since it lacks a built-in equivalent to MySQL's SHOW CREATE TABLE. So most of these declarative pg tools shell out to pg_dump, or require the user to do so. But sqldef actually implements CREATE TABLE dumping in pure Golang if I recall correctly, which is pretty cool.

    There's also the question of implementing the table diff logic from scratch, vs shelling out to another tool or using a library. For the latter path, there's a nice blog post from Supabase about how they evaluated the various options: https://supabase.com/blog/supabase-cli#choosing-the-best-dif...

  • Pgroll: zero-downtime, undoable, schema migrations for Postgres
    15 projects | news.ycombinator.com | 3 Oct 2023
    Forr postgres, how does the schema diffing aspect compare to migra?

    https://github.com/djrobstep/migra

    I'm asking because, although migra is excellent and there are multiple migrations tools based on it (at least https://github.com/bikeshedder/tusker and https://github.com/blainehansen/postgres_migrator), issues are piling up but development seem to be slowing down

  • Diesel 2.1
    5 projects | /r/rust | 26 May 2023
    Is this similar to migra? There's a tool written in Rust that calls it, postgres_migrator (there's also tusker)
  • 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

  • migrator: automatically generate postgres migrations from a declarative raw sql schema
    1 project | /r/PostgreSQL | 6 Mar 2022
  • migrator: automatically generate postgres migrations from a declarative raw sql schema, written in Rust
    1 project | /r/rust | 6 Mar 2022
  • Migrator: Automatically generate Postgres migrations from declarative SQL schema
    1 project | news.ycombinator.com | 6 Mar 2022

What are some alternatives?

When comparing diesel-oci and postgres_migrator you can also consider the following projects:

rsfbclient - Rust Firebird Client

refinery - Powerful SQL migration toolkit for Rust.

quaint - SQL Query AST and Visitor for Rust

pgroll - PostgreSQL zero-downtime migrations made easy

tusker - PostgreSQL migration management tool

migra - Like diff but for PostgreSQL schemas

crates.io - The Rust package registry

quantumdb - Zero-downtime schema evolution for PostgreSQL

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

cornucopia - Generate type-checked Rust from your PostgreSQL.