# File test.rb, line 520
  def test_bind_result_string()
    if @m.server_version >= 40100 then
      @m.query("create temporary table t (i int, c char(10), d double, t datetime)")
      @m.query("insert into t values (123, '9abcdefg', 1.2345, 20050802235011)")
      @s.prepare("select * from t")
      @s.bind_result(String, String, String, String)
      @s.execute
      a = @s.fetch
      assert_equal(["123", "9abcdefg", "1.2345", "2005-08-02 23:50:11"], a)
    end
  end