~blainsmith/hare-sqlite

SQLite bindings for Hare
update for hare 0.24.2
fix errors in documentation, make style more consistent with stdlib docs
free with defer in demo

refs

main
browse  log 

clone

read-only
https://git.sr.ht/~blainsmith/hare-sqlite
read/write
git@git.sr.ht:~blainsmith/hare-sqlite

You can also use your local clone with git send-email.

#hare-sqlite

This package provides SQLite support for Hare.

#Installation

#Dependencies

Install the shared library for SQLite. For Debian this would be libsqlite3-dev.

#From your distribution

The recommended name for this package is "hare-sqlite". Look for this, or something similar, in your local package manager. This is the preferred way to install this package.

#System-wide installation

make install

#Vendoring

git subtree -P vendor/hare-sqlite/ add https://git.sr.ht/~blainsmith/hare-sqlite main

#Compiling

Include the shared library when compiling your Hare source.

> hare build -lc -lsqlite3 main.ha