A SQLite extension for querying CSV files
A SQLite extension for generating text embeddings.
Makes SQLite create case-insensitive string and text fields
A vector search SQLite extension.
Take the pain out of dealing with databases in Android by generating fully functional database, content provider, and ORM object code, from nothing more than a pre-built sqlite database or a .sql file.
csvpack - work with tabular data packages using comma-separated values (CSV) datafiles in text with datapackage.json; download, read into and query comma-separated values (CSV) datafiles with your SQL database (e.g. SQLite, PostgreSQL, ...) of choice and much more
Allow users to be able to make todo lists without moving away from terminal, all the lists are persisted to database. You need to have sqlite installed on your computer before hand http://www.sqlite.org
Small library that can populate a SQLite database with the recursive list of all files and their respective metadata.
fbtxt2sqlite - read football.txt match schedules & more into sqlite database
RailsDB is a web application written in Ruby using the Ruby on Rails web framework. RailsDB provides a generic interface to popular open source databases such as MySQL, PostgreSQL, and SQLite.
Override migration methods to support UUID/ULID columns without having to be explicit about it.
Helper queries providing insights into the Sqlite database for Rails apps.
Sqlite3 Adapter for DataMapper
libsql embeds the libsql fork of the SQLite database engine as a ruby extension. There is no need to install libsql separately.
GQLite is a C++-language library, with a C interface, that implements a small, fast, self-contained, high-reliability, full-featured, Graph Query database engine. The data is stored in a SQLite database, which the fasted and most used SQL database. This enable to achieve high performance and for application to combine Graph queries with traditional SQL queries. GQLite source code is license under the [MIT License](LICENSE) and is free to everyone to use for any purpose. The official repositories contains bindings/APIs for C, C++, Python, Ruby and Crystal. The library is still in its early stage, but it is now fully functional. Development effort has now slowed down and new features are added on a by-need basis. It supports a subset of [OpenCypher](https://opencypher.org/), and the intent is to also support ISO GQL in the future when it become available. Example of use -------------- ```ruby require 'gqlite' begin # Create a database on the file "test.db" connection = GQLite::Connection.new sqlite_filename: "test.db" # Execute a simple query to create a node and return all the nodes value = connection.execute_oc_query("CREATE () MATCH (n) RETURN n") # Print the result if value.nil? puts "Empty results" else puts "Results are #{value.to_s}" end rescue GQLite::Error => ex # Report any error puts "An error has occured: #{ex.message}" end ``` The documentation for the openCypher query language can found in [openCypher](https://gitlab.com/gqlite/GQLite/-/blob/docs/opencypher.md) and for the [API](https://gitlab.com/gqlite/GQLite/-/blob/docs/api.md).
Retries database transaction on deadlock and transaction serialization errors. Supports MySQL, PostgreSQL and SQLite (as long as you are using new drivers mysql2, pg, sqlite3).
All the missing glue to use the SQLite FTS
This gem lets you export selected Salesforce Objects to SQLite.
Octostat extract git information to Sqlite
Allows to add tags on files, then find the files by tags. A SQLite database stores the references.
Lite Queen is an open-source SQLite database management software for Ruby on Rails projects
Plume is a Ruby library that allows you to write SQLite's dialect of SQL with structured Ruby.
Set transaction isolation level in the ActiveRecord in a database agnostic way. Works with MySQL, PostgreSQL and SQLite as long as you are using new adapters mysql2, pg or sqlite3. Supports all ANSI SQL isolation levels: :serializable, :repeatable_read, :read_committed, :read_uncommitted.
Precompiled SQLean extensions for SQLite, packaged for the Ruby ecosystem. Compatible with SQLite3, Extralite, and any other sqlite-based library that exposes sqlite3_load_extension.
Library for bibles as SQLite databases
Extract cookies from Firefox, Chrome or Chromium sqlite databases into a wget-compatible cookies.txt file.
Set transaction isolation level in the ActiveRecord in a database agnostic way. Works with MySQL, PostgreSQL and SQLite as long as you are using new adapters mysql2, pg or sqlite3. Supports all ANSI SQL isolation levels: :serializable, :repeatable_read, :read_committed, :read_uncommitted.
Retries database transaction on deadlock and transaction serialization errors. Supports MySQL, PostgreSQL and SQLite.
create csv exports from the sqlite export and the export_version json
The best Rails 4.2+ forums engine ever. Its goal is to be as simple and feature rich as possible. Thredded works with SQLite, MySQL (v5.6.4+), and PostgreSQL. See the demo at https://thredded.org/.
BranchBase provides a CLI to synchronize a Git repository into a SQLite database.
A SQLite based, lightning fast, super efficient and dead simple to setup and use metrics platform for Ruby and Rails applications!
A SQLite based, lightning fast, super efficient and dead simple to setup and use cache backend for Ruby and Rails applications!
A SQLite based, lightning fast, super efficient and dead simple to setup and use web server for Ruby and Rails applications!
A SQLite based, lightning fast, super efficient and dead simple to setup and use full text search engine for Ruby and Rails applications!
A SQLite based, lightning fast, super efficient and dead simple to setup and use pub/sub provider for Ruby and Rails applications!
This gem provides a single user-friendly interface for SEQUENCE functionality in Postgresql and MariaDB DBMS within the Sequel ORM. It also models the Sequences to meet the needs of SQLite and MySQL users.
Simple queue implementation on top of SQLite
uuid_v7 enables UUID V7 as primary keys in Rails, optimized for Mysql and Sqlite, with efficient migration and integration features.