limbo/sqlite3
Pekka Enberg 936ae307b7 core: Kill value type
We currently have two value types, `Value` and `OwnedValue`. The
original thinking was that `Value` is external type and `OwnedValue` is
internal type. However, this just results in unnecessary transformation
between the types as data crosses the Limbo library boundary.

Let's just follow SQLite here and consolidate on a single value type
(where `sqlite3_value` is just an alias for the internal `Mem` type).
The way this will eventually work is that we can have bunch of
pre-allocated `OwnedValue` objects in `ProgramState` and basically
return a reference to them all the way to the application itself, which
extracts the actual value.
2025-02-26 10:57:45 +02:00
..
examples sqlite3: Fix example program 2024-05-08 07:19:57 -03:00
include Fix inconsistent SQLITE_NOTFOUND error code 2025-01-03 11:19:21 +01:00
src core: Kill value type 2025-02-26 10:57:45 +02:00
tests Remove dependency on system libsqlite headers from compatibility tests 2025-01-03 11:19:21 +01:00
Cargo.toml Implement basic sqlite3_get_table() API 2024-12-19 23:13:51 -03:00
cbindgen.toml Initial pass on SQLite C ABI 2024-05-08 07:05:56 -03:00