Method: Baza::Driver::Mysql#query_ubuf

Defined in:
lib/baza/driver/mysql.rb

#query_ubuf(str) ⇒ Object

Executes an unbuffered query and returns the result that can be used to access the data.



79
80
81
82
83
84
# File 'lib/baza/driver/mysql.rb', line 79

def query_ubuf(str)
  @mutex.synchronize do
    @conn.query_with_result = false
    return Baza::Driver::Mysql::UnbufferedResult.new(@conn, @opts, @conn.query(str))
  end
end