Skip to content

Latest commit

 

History

History
29 lines (16 loc) · 653 Bytes

README.md

File metadata and controls

29 lines (16 loc) · 653 Bytes

SQLite3 ActiveRecord REGEXP

Version

This adds REGEXP support to SQLite3 in ActiveRecord.

This project uses Semantic Versioning.

Installation

Add this line to your application's Gemfile:

gem 'sqlite3_ar_regexp', '~> 3.0'

And then execute:

$ bundle

Or install it yourself as:

$ gem install sqlite3_ar_regexp

Usage

# find all accounts where the first name starts with "a"
Account.where('first_name REGEXP "^a"')

Credits

The original code for this was done by Joe Yates.