Method: Myq::Core#query_single
- Defined in:
- lib/myq/core.rb
#query_single(query) ⇒ Object
73 74 75 76 77 78 79 80 |
# File 'lib/myq/core.rb', line 73 def query_single(query) begin res = @client.xquery(query) rescue => e puts "\n#{e.}\n#{e.backtrace.join("\n")}" puts query end end |