+ All Categories
Home > Documents > The definitive guide to django

The definitive guide to django

Date post: 27-Jan-2015
Category:
Upload: sodbilego
View: 224 times
Download: 4 times
Share this document with a friend
Description:
 
Popular Tags:
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
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 "


Recommended