MCPcopy Index your code
hub / github.com/davispuh/MySQL-for-Python-3 / help_nextset_setUp

Method help_nextset_setUp

tests/dbapi20.py:704–717  ·  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

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

Callers 1

test_nextsetMethod · 0.95

Calls

no outgoing calls

Tested by 1

test_nextsetMethod · 0.76