test case: with user-provided type other than table field type
This commit is contained in:
parent
1c52e6598e
commit
2436485e9b
|
@ -113,3 +113,11 @@ while row:
|
|||
row = cursor.fetchone()
|
||||
cursor.close()
|
||||
|
||||
cursor = cnxn.cursor()
|
||||
cursor.execute("SELECT * from db.v where v1 > ?", '5')
|
||||
row = cursor.fetchone()
|
||||
while row:
|
||||
print(row)
|
||||
row = cursor.fetchone()
|
||||
cursor.close()
|
||||
|
||||
|
|
Loading…
Reference in New Issue