Support for Turso #4173
-
The connection to the turso database seems to consist out of the db URL and the the db auth token. diesel only allows the connection via one db URL with includes both. how can I connect my turso db with diesel? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I've never used turso, so I cannot answer that. The official answer here is: Diesel officially supports SQLite, PostgreSQL and MySQL as backends. These backends are tested and expected to work. Everything else is not supported. It might work or it might not, depending on what the other database does. If it doesn't work the correct way to make it work is to implement a custom connection type (maybe including a custom backend) that handles the specific requirements of that database as third party crate. |
Beta Was this translation helpful? Give feedback.
I've never used turso, so I cannot answer that.
The official answer here is: Diesel officially supports SQLite, PostgreSQL and MySQL as backends. These backends are tested and expected to work.
Everything else is not supported. It might work or it might not, depending on what the other database does. If it doesn't work the correct way to make it work is to implement a custom connection type (maybe including a custom backend) that handles the specific requirements of that database as third party crate.