the definitive guide to django

538
THE EXPERT’S VOICE ® IN WEB DEVELOPMENT The Definitive Guide to Web Development Done Right SECOND EDITION Adrian Holovaty and Jacob Kaplan-Moss Benevolent Dictators for Life, Django Django is a framework that saves you time and makes Web development a joy Updated for Django 1.1 Updated for Django 1.1

Upload: sodbilego

Post on 27-Jan-2015

222 views

Category:

Documents


4 download

DESCRIPTION

 

TRANSCRIPT

"print "Books"print "

  • "connection = MySQLdb.connect(user=me, passwd=letmein, db=my_db)cursor = connection.cursor()cursor.execute("SELECT name FROM books ORDER BY pub_date DESC LIMIT 10")for row in cursor.fetchall():print "
  • %s" % row[0]print "

"print "