Advertisement
Joze

Untitled

Jan 16th, 2012
379
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. #Ejecución de Query:
  2. result = db.executeProcedure('get_all_test', None)
  3. if result:
  4.     rows = db.getLastExecutionResult()
  5.     #accedemos por nombre de campo:
  6.     for row in rows:
  7.         print "URL: %s with counter ref: %s" % (row['url'],row['origin'])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement