-
Someone reported that with the following Prisma example, they're always getting `TRANSACTION_CLOSED` error on the first write:
https://www.prisma.io/blog/prisma-turso-ea-support-rXGd_Tmy3UXX
-
The CLI caches various bits of data from the underlying platform API. When there are changes from other sources, the cache doesn't reset until expiration. This can be confusing for users of the CLI wh…
-
A user in discord was not able to take export:
```sh
turso db shell mighty-night .dump > my_db.sql
Error: failed to execute SQL: SELECT * FROM 'users'
Response is too large
```
discord - htt…
-
You can currently do `cat | turso db shell ` but let's add an explicit command line option.
-
Hi guys, I'm following this [tutorial](https://turso.tech/blog/creating-a-multitenant-saas-service-with-turso-remix-and-drizzle-6205cf47) about multi-tenant app with RemixJS + Drizzle + Turso. In shor…
-
If you, for example, cancel `turso db create` command before it managed to spawn an instance, you will end up with a database that you cannot connect to. Some of the commands suggest running `db repli…
-
I'm planning to introduce a Database in my (vercel edge) production app and want to know how big can the `turso.tech` database be. I don't want to have a single db-per-user approach. Is there an upper…
-
Currently, a database has storage capacity that's determined at creation time. Let's add a `turso db extend` command, similar to `fly volumes extend` to increase storage capacity.
-
I compared some potential components to assemble the initial pacha go infrastructure.
**Goals:**
- Fast to develop
- Easy to iterate on and try new features
- Welcoming for new and occasiona…
-
In sqlite3, this works as you would expect (list of values in square brackets vs. tuple in parens):
```python
cur.execute("INSERT INTO users VALUES (?, ?)", [1, 'alice@example.org'])
```
In li…