You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cur.execute("SELECT BranchName FROM RunManager2.dbo.Branch WHERE BranchName = ? AND Official = ?", ["near", 1])
branch_id = cur.fetchone()
print(branch_id.get('BranchName')) //this is not working but print(branch_id[0]) is working
I'm running on a python 3.4 environment
The text was updated successfully, but these errors were encountered:
cur.execute("SELECT BranchName FROM RunManager2.dbo.Branch WHERE BranchName = ? AND Official = ?", ["near", 1])
branch_id = cur.fetchone()
print(branch_id.get('BranchName')) //this is not working but print(branch_id[0]) is working
I'm running on a python 3.4 environment
The text was updated successfully, but these errors were encountered: