Skip to content

nyovaya/sqlite-zig

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sqlite.zig

This repository has zig bindings for sqlite. It trys to make the sqlite c API more ziggish.

Usage

Add src/sqlite.zig as a package in your build.zig, and then add the sqlite and c libraries:

example.addPackagePath("sqlite", "path/to/deps/sqlite/src/sqlite.zig");
example.linkSystemLibrary("sqlite3");
example.linkSystemLibrary("c");

Make sure you have sqlite3 installed on you system.

sqlite.zig works with zig 0.6.0.

Examples

TODO

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Zig 99.6%
  • Nix 0.4%