Пример #1
0
 def cursor_open(self):
     """ Overridden to apply timeout """
     c, s = Database.cursor_open(self)
     if self.timeout > 0:
         s.execute("SET SESSION max_execution_time=%d" % self.timeout)
     return c, s
Пример #2
0
 def cursor_open(self):
     """ Overridden to apply timeout """
     c, s = Database.cursor_open(self)
     if self.timeout > 0:
         s.execute("SET statement_timeout=%d" % self.timeout)
     return c, s