Skip to content

Commit

Permalink
doc: download links
Browse files Browse the repository at this point in the history
  • Loading branch information
nalgeon committed Nov 18, 2021
1 parent 7db0b2b commit 9590fab
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 19 deletions.
4 changes: 2 additions & 2 deletions docs/crypto.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ Provides following functions:

Each function expects `data` to be `TEXT` or `BLOB`. Returns a `BLOB` hash. Use the `hex()` function to convert it to hex string.

[Download](https://github.com/nalgeon/sqlean/releases/latest)

## Usage

```
sqlite> select hex(md5('abc'));
900150983CD24FB0D6963F7D28E17F72
```

[Download](https://github.com/nalgeon/sqlean/releases/latest)
4 changes: 2 additions & 2 deletions docs/fuzzy.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,11 @@ sqlite> select translit('привет');
privet
```

[Download](https://github.com/nalgeon/sqlean/releases/latest)

## Usage

```
sqlite> .load ./fuzzy
sqlite> select soundex('hello');
```

[Download](https://github.com/nalgeon/sqlean/releases/latest)
2 changes: 1 addition & 1 deletion docs/ipaddr.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ sqlite> select ipfamily('2001:db8::1');
6
```

[Download](https://github.com/nalgeon/sqlean/releases/latest)
[Download](https://github.com/nalgeon/sqlean/releases/latest)
4 changes: 2 additions & 2 deletions docs/json1.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
This is the 'native' SQLite [JSON1 extension](https://sqlite.org/json1.html).
It's often compiled into SQLite build, but in case your build doesn't include it - I've compiled it separately.

Download: [Download](https://github.com/nalgeon/sqlean/releases/latest)

## Usage

```
sqlite> .load ./json1
sqlite> select json_object("answer", 42);
```

[Download](https://github.com/nalgeon/sqlean/releases/latest)
4 changes: 2 additions & 2 deletions docs/math.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ Provides following functions:

[Full functions list](https://sqlite.org/lang_mathfunc.html)

[Download](https://github.com/nalgeon/sqlean/releases/latest)

## Usage

```
sqlite> .load ./math
sqlite> select sqrt(9);
```

[Download](https://github.com/nalgeon/sqlean/releases/latest)
4 changes: 2 additions & 2 deletions docs/stats.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ Provides following functions:
- `variance` or `var_samp` - sample variance,
- `var_pop` - population variance.

[Download](https://github.com/nalgeon/sqlean/releases/latest)

## Usage

```
sqlite> .load ./stats
sqlite> select median(value) from generate_series(1, 100);
```

[Download](https://github.com/nalgeon/sqlean/releases/latest)
4 changes: 2 additions & 2 deletions docs/text.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ two

Only ASCII (1-byte) symbols are supported as separators.

[Download](https://github.com/nalgeon/sqlean/releases/latest)

## Usage

```
sqlite> .load ./text
sqlite> select reverse('hello');
```

[Download](https://github.com/nalgeon/sqlean/releases/latest)
4 changes: 2 additions & 2 deletions docs/unicode.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ Overrides the default NOCASE case-insensitive collation sequence to support UTF-

Has no external dependencies (like libicu). Adapted from [sqlite3_unicode](https://github.com/Zensey/sqlite3_unicode) by Anton Litvinov.

[Download](https://github.com/nalgeon/sqlean/releases/latest)

## Usage

Before:
Expand All @@ -32,3 +30,5 @@ HELLO
sqlite> select upper('привет');
ПРИВЕТ
```

[Download](https://github.com/nalgeon/sqlean/releases/latest)
4 changes: 2 additions & 2 deletions docs/uuid.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ sqlite> select hex(uuid_blob(uuid4()));
7192B1B452964E809500CF0364476CD3
```

[Download](https://github.com/nalgeon/sqlean/releases/latest)

## Usage

```
sqlite> .load ./uuid
sqlite> select uuid4();
```

[Download](https://github.com/nalgeon/sqlean/releases/latest)
4 changes: 2 additions & 2 deletions docs/vsv.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ Provides virtual table for working directly with CSV files, without importing da

Adapted from [vsv.c](http://www.dessus.com/files/vsv.c) by Keith Medcalf.

[Download](https://github.com/nalgeon/sqlean/releases/latest)

## Usage

```sql
Expand Down Expand Up @@ -135,3 +133,5 @@ each value returned by the VSV virtual table:
(see real above) then the number will
returned as an integer if it has no
fractional part; otherwise a double will be returned

[Download](https://github.com/nalgeon/sqlean/releases/latest)

0 comments on commit 9590fab

Please sign in to comment.