-
It would be nice to have an API that can open any type of connection (like you would for instace do in javascript using libsql-js) with a given URL / database location.
Futhermore, the C API seems …
-
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…
-
Let's add support for PHP.
-
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…
-
We currently implement `batch()` by issuing every statement separately. Let's switch to libSQL batch interface instead (we need to expose it in `libsql` first).
-
```
drizzle-kit: 0.27.1
drizzle-orm: 0.36.0(@libsql/client@0.14.0)(react@18.3.1)
@libsql/client: 0.14.0
typescript: 5.6.3
```
I followed the turso + drizzle setup guide from the [drizzle-kit](…
-
I did `db destroy` on a database and then `db create` with the same name, but now `db shell` is failing to connect:
```
Error: failed to connect to database. err: Post "https://gh-next-penberg.tur…
-
### What happened?
I have the need to have multiple database connections in the same app, both multiple Turso connections but also non-Turso connections. The package seems to expect (here and here) a…
-
Exec method appears to not support multi line statement queries, it executes up until first `;` then completes.
Minimal code required to reproduce.
```go
db, err := sql.Open("libsql", url)
if er…
-
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.