fix case
This commit is contained in:
parent
5837c141c9
commit
a0b8ec4eeb
|
@ -61,7 +61,7 @@ class TDSql:
|
||||||
self.cursor.execute(s)
|
self.cursor.execute(s)
|
||||||
s = 'use db'
|
s = 'use db'
|
||||||
self.cursor.execute(s)
|
self.cursor.execute(s)
|
||||||
time.sleep(2)
|
time.sleep(2)
|
||||||
|
|
||||||
def error(self, sql):
|
def error(self, sql):
|
||||||
expectErrNotOccured = True
|
expectErrNotOccured = True
|
||||||
|
@ -249,7 +249,7 @@ class TDSql:
|
||||||
raise Exception(repr(e))
|
raise Exception(repr(e))
|
||||||
return self.queryResult
|
return self.queryResult
|
||||||
|
|
||||||
|
|
||||||
def executeTimes(self, sql, times):
|
def executeTimes(self, sql, times):
|
||||||
for i in range(times):
|
for i in range(times):
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue