© 2026 Hedgehog Software, LLC
export const uint8Array = (name: string) => customType<{ data: Uint8Array<ArrayBuffer>; driverData: ArrayBuffer }>({ dataType: () => "blob", toDriver: (value) => value.buffer, fromDriver: (value) => new Uint8Array(value), })(name)
Error: JSON cannot hold BLOB values: SQLITE_ERROR