Skip to content

Rust implementation of the internal SQLite JSONB format

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

goto-bus-stop/sqlite-jsonb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sqlite-jsonb

Rust implementation of the internal SQLite JSONB format.

The JSONB format is stable, but you should normally not use it. SQLite provides a json() function that converts JSONB to JSON text and you can then parse that text in your application. There are some cases where using JSONB may be justified:

  • You are writing an extension for SQLite with a function that operates on JSON--for the best UX you should handle both JSON text and JSONB.
  • You have a specific performance problem with reading JSON from your SQLite database where the columns contain JSONB.

License

ⓒ Renée Kooi · Dual-licensed under Apache-2.0 or MIT at your option.

About

Rust implementation of the internal SQLite JSONB format

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages