SQLite3

Ruby bindings for the SQLite3 embedded database (by sparklemotion)

SQLite3 Alternatives

Similar projects and alternatives to SQLite3

  1. Ruby on Rails

    Ruby on Rails

  2. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
  3. pglite

    33 SQLite3 VS pglite

    Embeddable Postgres with real-time, reactive bindings.

  4. chdb

    29 SQLite3 VS chdb

    chDB is an in-process OLAP SQL Engine 🚀 powered by ClickHouse

  5. Hanami

    23 SQLite3 VS Hanami

    A flexible framework for maintainable Ruby apps

  6. Blueprinter

    Simple, Fast, and Declarative Serialization Library for Ruby

  7. mysql2

    4 SQLite3 VS mysql2

    A modern, simple and very fast Mysql library for Ruby - binding to libmysql

  8. Stream

    Stream - Scalable APIs for Chat, Feeds, Moderation, & Video. Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.

    Stream logo
  9. TinyTDS

    TinyTDS - Simple and fast FreeTDS bindings for Ruby using DB-Library.

  10. SQL Server

    SQL Server Adapter For Rails

  11. Clickhouse

    0 SQLite3 VS Clickhouse

    A Ruby database driver for Clickhouse (by archan937)

  12. extralite

    Ruby on SQLite

  13. ROM

    5 SQLite3 VS ROM

    Data mapping and persistence toolkit for Ruby

  14. redis-rb

    8 SQLite3 VS redis-rb

    A Ruby client library for Redis

  15. moped

    0 SQLite3 VS moped

    Discontinued A MongoDB driver for Ruby (by mongoid)

  16. Redic

    0 SQLite3 VS Redic

    Lightweight Redis Client

  17. Hanami::Utils

    Ruby core extentions and class utilities for Hanami (by hanami)

  18. Neography

    A thin Ruby wrapper to the Neo4j Rest API

  19. clean-architecture-minimal-app

    Discontinued A minimal Clean Architecture app [GET https://api.github.com/repos/moekiorg/clean-architecture-minimal-app: 404 - Not Found // See: https://docs.github.com/rest]

  20. Cassandra Driver

    [MAINTENANCE ONLY] DataStax Ruby Driver for Apache Cassandra

  21. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better SQLite3 alternative or higher similarity.

SQLite3 discussion

Log in or Post with

SQLite3 reviews and mentions

Posts with mentions or reviews of SQLite3. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-09-11.
  • SQLite on Rails: The how and why of optimal performance
    6 projects | news.ycombinator.com | 11 Sep 2024
    You can read more discussion here: https://github.com/sparklemotion/sqlite3-ruby/pull/528 and here: https://github.com/digital-fabric/extralite/pull/46 to see how it was validated that simply releases the GVL for every `step` in the SQLite VM majorly hurts single-threaded performance. Finding a middle ground for both single threaded and multi-threaded performance is tricky. In Rails, we know it is multi-threaded because of the connection pool. But the lower level gem is used in many other libraries and tools where it is used in a single threaded environment
  • Working with SQLite in Ruby
    1 project | /r/rails | 11 Dec 2023
  • Extralite 2.0 has been released!
    3 projects | /r/ruby | 9 Jul 2023
    Extralite is a gem for working with SQLite databases. It is blazing fast (up to 11x the performance of the sqlite3 gem), and provides a rich API for accessing database data in a variety of formats.
  • Understanding Clean Architecture with small Ruby libraries
    6 projects | dev.to | 1 Nov 2022
    DB: sparklemotion/sqlite3-ruby: Ruby bindings for the SQLite3 embedded database
  • Sharing my exp so far with using SQLite in Production
    2 projects | /r/rails | 14 Oct 2022
    # This configure_connection is run when each new connection is created. # see https://github.com/rails/rails/blob/main/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb#L1112 def configure_connection super puts "Configuring DB connection with app-specific PRAGMA statements" conn = self.raw_connection # see https://github.com/sparklemotion/sqlite3-ruby/blob/master/lib/sqlite3/pragmas.rb conn.synchronous = 1 # normal # this is a permanent pragma but in case DB is brand new, no harm is invoking it conn.journal_mode = 'wal' # this is unnecssary b/c rails' sqlite3adapter turns it on by default conn.foreign_keys = true # this is not yet supported with convenience method #conn.analysis_limit = 400 # PRAGMA temp_store = 'memory' # hold temporary indices and tables in memory # conn.temp_store = 2 end
  • Resources for learning environment related things?/Help getting sqlite3 working with ruby on WSL ubuntu
    1 project | /r/learnprogramming | 1 Jul 2022
    That looks like you're missing the ruby module, not the OS package. If you're using bundler to manage your dependencies, add gem 'sqlite3', '~> 1.3', '>= 1.3.11' to your Gemfile. For reference, I got that line from this page: https://rubygems.org/gems/sqlite3/versions/1.3.11
  • A note from our sponsor - SaaSHub
    www.saashub.com | 11 Jul 2025
    SaaSHub helps you find the best software and product alternatives Learn more →

Stats

Basic SQLite3 repo stats
6
807
8.7
4 days ago

Sponsored
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com

Did you know that Ruby is
the 12th most popular programming language
based on number of references?