Replies: 1 comment 1 reply
-
So first of all: It's certainly possible to build something like that on diesel. All the necessary information should be there. To address the single points:
That's kind of possible via the
Diesel does not provide a built-in way to do this, as it decouples rust types from tables. They are designed to map more like 1:1 to queries. That written you can certainly do that (or just use a third party tool like
See |
Beta Was this translation helpful? Give feedback.
-
So I've got a small collection of people who want to build an equivalent of pocketbase/blitz for axum+leptos, and I'm trying to evaluate different db libraries to see how close they are to what we need and how much would have to be added on.
Does Diesel support the following things?
From the docs it looks like 1 is no, but tools exist to represent a database through the table! macro. 2 comes from 1 and 3 looks like yes with caveats. Is that fair to say?
Beta Was this translation helpful? Give feedback.
All reactions