Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 320 Bytes

README.md

File metadata and controls

11 lines (8 loc) · 320 Bytes

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!".

.load ./hello0
select hello('Alex');
'Hello, Alex!'