mirror of
https://github.com/qgis/QGIS.git
synced 2025-12-25 00:12:17 -05:00
Remove debugging line
This commit is contained in:
parent
bb12bf2cca
commit
285a98431f
@ -63,7 +63,6 @@ class CursorProxy():
|
||||
self.result = None
|
||||
self.closed = False
|
||||
self.description = None
|
||||
print ("XXX CursorProxy initialized with sql " + sql)
|
||||
if (self.sql != None):
|
||||
self._execute()
|
||||
|
||||
@ -78,6 +77,8 @@ class CursorProxy():
|
||||
#print("XXX qvariant type of " + str(col)+ " is " + str(col.type))
|
||||
if (str(col) == 'NULL'):
|
||||
col = None
|
||||
else:
|
||||
col = str(col) # force to string
|
||||
newrec.append(col)
|
||||
newres.append(newrec)
|
||||
return newres
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user