File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# sqlite3-uuid
22
3- [ ![ Build Status] ( https://travis-ci.org/benwebber/sqlite3-uuid.svg?branch=master )] ( https://travis-ci.org/benwebber/sqlite3-uuid )
43[ ![ codecov] ( https://codecov.io/gh/benwebber/sqlite3-uuid/branch/master/graph/badge.svg )] ( https://codecov.io/gh/benwebber/sqlite3-uuid )
54
65This SQLite extension implements functions for creating [ RFC 4122] ( https://www.ietf.org/rfc/rfc4122.txt ) compliant UUIDs.
@@ -27,7 +26,7 @@ This SQLite extension implements functions for creating [RFC 4122](https://www.i
2726 make
2827 ```
2928
30- 2 . Load the extension using your SQLite API of choice. For example, in Python,
29+ 3 . Load the extension using your SQLite API of choice. For example, in Python,
3130
3231 ```python
3332 import sqlite3
@@ -76,7 +75,7 @@ SELECT uuid4();
7675Generate a version 5 (SHA1) namespace UUID.
7776
7877```
79- SELECT uuid3 (uuid_ns_dns(), 'example.org');
78+ SELECT uuid5 (uuid_ns_dns(), 'example.org');
8079aad03681-8b63-5304-89e0-8ca8f49461b5
8180```
8281
@@ -133,7 +132,7 @@ sqlite3 -cmd '.load uuid' uuid.db 'SELECT uuid_to_blob("3dfe5c62-e543-46ff-a2e0-
13313200000010
134133```
135134
136- ### ` uuid_to_text() `
135+ #### ` uuid_to_text() `
137136
138137Convert a 16-byte BLOB to a TEXT UUID.
139138
You can’t perform that action at this time.
0 commit comments