https://github.com/asg017/sqlite-hello
https://github.com/asg017/sqlite-hello
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/asg017/sqlite-hello
- Owner: asg017
- License: mit
- Created: 2023-04-25T23:57:28.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-24T00:59:18.000Z (about 1 year ago)
- Last Synced: 2024-05-01T15:21:26.021Z (12 months ago)
- Language: Elixir
- Size: 364 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sqlite-hello
The smallest possible "hello world" SQLite extension. Meant for testing and debugging loadable SQLite extensions.
Exposes a single SQL scalar function `hello()`, that takes a single `name` argument and returns the string `"Hello, name!"`.
```sql
.load ./hello0
select hello('Alex');
'Hello, Alex!'
```