Sha256: a3dd7b3e814e2241c1e467de1a073015bfd4a87790e57d2ac8b486519633794c

Contents?: true

Size: 1.01 KB

Versions: 1

Compression:

Stored size: 1.01 KB

Contents

# Mysql2QueryFilter

Filtering framework for [Mysql2](https://github.com/brianmario/mysql2).

## Installation

Add this line to your application's Gemfile:

```ruby
gem 'mysql2_query_filter'
```

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install mysql2_query_filter

## Usage

```ruby
require 'mysql2_query_filter'

class MyFilter < Mysql2QueryFilter::Plugin::Filter
  def filter(sql, query_options)
    p sql
    p query_options
  end
end

Mysql2QueryFilter.configure do |filter|
  filter.append MyFilter
end

Mysql2QueryFilter.enable

client = Mysql2::Client.new(host: 'localhost', username: 'root')
client.query('show databases')
```

### Use plug-in

see [mysql2_query_filter-plugin-log](https://github.com/winebarrel/mysql2_query_filter-plugin-log).

```ruby
require 'mysql2_query_filter'

Mysql2QueryFilter.configure do |filter|
  filter.plugin :log #, out: $stderr
end

Mysql2QueryFilter.enable

client = Mysql2::Client.new(host: 'localhost', username: 'root')
client.query('show databases')
```

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mysql2_query_filter-0.0.3 README.md