34 lines
779 B
Ruby
34 lines
779 B
Ruby
# encoding: UTF-8
|
|
|
|
require 'rubygems'
|
|
require 'benchmark'
|
|
require 'mysql'
|
|
require 'mysql2_ext'
|
|
|
|
number_of = 1000
|
|
database = 'nbb_1_production'
|
|
str = "abc'def\"ghi\0jkl%mno"
|
|
|
|
Benchmark.bmbm do |x|
|
|
mysql = Mysql.new("localhost", "root")
|
|
mysql.query "USE #{database}"
|
|
x.report do
|
|
puts "Mysql"
|
|
number_of.times do
|
|
# NOTE: this uses mysql_escape_string in C
|
|
# which is *not* encoding aware
|
|
mysql.escape_string str
|
|
end
|
|
end
|
|
|
|
mysql2 = Mysql2::Client.new(:host => "localhost", :username => "root")
|
|
mysql2.query "USE #{database}"
|
|
x.report do
|
|
puts "Mysql2"
|
|
number_of.times do
|
|
# NOTE: this uses mysql_real_escape_string in C
|
|
# which takes into account the encoding set on the connection
|
|
mysql2.escape str
|
|
end
|
|
end
|
|
end |