# File test.rb, line 608
  def test_execute()
    if @m.server_version >= 40100 then
      @m.query("create temporary table t (i int)")
      @s.prepare("insert into t values (123)")
      @s.execute()
      assert_equal(1, @s.affected_rows)
      @s.execute()
      assert_equal(1, @s.affected_rows)
      assert_equal(2, @m.query("select count(*) from t").fetch_row[0].to_i)
    end
  end