D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
td-agent
/
embedded
/
lib
/
ruby
/
gems
/
2.1.0
/
gems
/
arel-6.0.4
/
lib
/
arel
/
collectors
/
Filename :
sql_string.rb
back
Copy
# encoding: utf-8 require 'arel/collectors/plain_string' module Arel module Collectors class SQLString < PlainString def initialize(*) super @bind_index = 1 end def add_bind bind self << yield(@bind_index) @bind_index += 1 self end def compile bvs value end end end end