MCPcopy Index your code
hub / github.com/PyMySQL/mysqlclient / help_nextset_setUp

Method help_nextset_setUp

tests/dbapi20.py:711–724  ·  view source on GitHub ↗

Should create a procedure called deleteme that returns two result sets, first the number of rows in booze then "name from booze"

(self, cur)

Source from the content-addressed store, hash-verified

709 con.close()
710
711 def help_nextset_setUp(self, cur):
712 """Should create a procedure called deleteme
713 that returns two result sets, first the
714 number of rows in booze then "name from booze"
715 """
716 raise NotImplementedError("Helper not implemented")
717 # sql="""
718 # create procedure deleteme as
719 # begin
720 # select count(*) from booze
721 # select name from booze
722 # end
723 # """
724 # cur.execute(sql)
725
726 def help_nextset_tearDown(self, cur):
727 "If cleaning up is needed after nextSetTest"

Callers 1

test_nextsetMethod · 0.95

Calls

no outgoing calls

Tested by 1

test_nextsetMethod · 0.76