Advertisement
Guest User

Untitled

a guest
Jul 28th, 2015
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. mymetadata = MetaData(engine_idf)
  2.  
  3. macadds = Table('EndpointsMacs',mymetadata,schema='dbo',autoload=True)
  4.  
  5. for row in macadds.select(macadds.c.IsDefault == 1).execute():
  6.     print macadds.c.MacAddress.type
  7.  
  8. print type(macadds.c.MacAddress)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement