# File test.rb, line 1210
  def test_param_count()
    if @m.server_version >= 40100 then
      @m.query("create temporary table t (a int, b int, c int)")
      @s.prepare("select * from t")
      assert_equal(0, @s.param_count())
      @s.prepare("insert into t values (?,?,?)")
      assert_equal(3, @s.param_count())
    end
  end