Sha256: 63d91fc26cc837eb4bddb528fa0e7038d725ec24bc34ce46a3fb41ce9b9e982d

Contents?: true

Size: 997 Bytes

Versions: 1

Compression:

Stored size: 997 Bytes

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)
    p sql
  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.2 README.md