sqlite-uuid 0.2.0

Plugin to add support for uuids in sqlite
Documentation
# sqlite-uuid

Add support for UUIDv4 and UUIDv7 to SQLite

> [!CAUTION]
> This is an experimental plugin

## Usage

```sql
.load libsqlite_uuid

--- Let's try uuid_blob which produces a blob (smaller than text)
CREATE TABLE events(
  event_id uuid_blob primary key,
  name TEXT
);

INSERT INTO events(event_id, name) VALUES (uuid_blob(), 'up');
INSERT INTO events(event_id, name) VALUES (uuid_blob(7), 'down');
INSERT INTO events(event_id, name) VALUES (uuid_as_blob('018d9887-42cd-7115-b1ca-18227ac211b4'), 'down');

SELECT uuid_from_blob(event_id), name
FROM events
WHERE event_id = uuid_as_blob('018d9887-42cd-7115-b1ca-18227ac211b4');

--- Let's use uuid which produces strings

CREATE TABLE events_as_str(
  event_id uuid primary key,
  name TEXT
);

INSERT INTO events_as_str(event_id, name) VALUES (uuid(), 'up');
INSERT INTO events_as_str(event_id, name) VALUES (uuid(7), 'down');

SELECT event_id name FROM events_as_str;
```

## Functions

```sql
--- create a uuid as BLOB
uuid_blob()
--- create a uuidv7 as BLOB
uuid_blob(7)

--- create a uuid as TEXT
uuid()
--- create a uuidv7 as TEXT
uuid(7)

--- convert TEXT uuid to BLOB
uuid_as_blob('018d9887-42cd-7115-b1ca-18227ac211b4')

--- convert uuid BLOB to TEXT
uuid_from_blob(column_name)
```