Sha256: dec7b90f1e701c49e461a6a9b445579d08d47187ea19a18f78d44ac2f298dd69
Contents?: true
Size: 464 Bytes
Versions: 10
Compression:
Stored size: 464 Bytes
Contents
require_relative './extralite_ext' # Extralite is a Ruby gem for working with SQLite databases module Extralite # A base class for Extralite exceptions class Error < RuntimeError end # An exception representing an SQL error emitted by SQLite class SQLError < Error end # An exception raised when an SQLite database is busy (locked by another # thread or process) class BusyError < Error end # An SQLite database class Database end end
Version data entries
10 entries across 10 versions & 2 rubygems