--> --> -->
 
 
ProgrammingError
Python 2.4.4: /usr/bin/python
Wed Mar 10 13:36:54 2010

A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.

 /nfs/c01/h06/mnt/36040/domains/simosito.it/html/downloads.py
   11 if 'page' in form:page=int(form.getvalue("page"))
   12 if page-1>=0:pages=(page-1,page+1)
   13 c.execute("SELECT title,description,url FROM downloads ORDER BY ID DESC LIMIT %d,%d"%(site['items/page']*page,site['items/page']))
   14 rows=c.fetchall()
   15 if not len(rows)==0:
c = <MySQLdb.cursors.Cursor object>, c.execute = <bound method Cursor.execute of <MySQLdb.cursors.Cursor object>>, site = {'blog_name': 'Neblog', 'down_name': 'Downloads!', 'footer': '<em>Simosito</em> di Simone Ramacci. Tutto il materiale &egrave; utilizzabile secondo licenza.', 'items/page': 10, 'lang': 'it', 'name': 'Simosito', 'plugins': ['transl', 'search', 'noIE'], 'preview_end': '<!--more-->', 'theme': 'orange', 'url': 'http://www.simosito.it'}, page = 0
 /usr/lib/python2.4/site-packages/MySQLdb/cursors.py in execute(self=<MySQLdb.cursors.Cursor object>, query='SELECT title,description,url FROM downloads ORDER BY ID DESC LIMIT 0,10', args=None)
  135             del tb
  136             self.messages.append((exc, value))
  137             self.errorhandler(self, exc, value)
  138         self._executed = query
  139         self._warning_check()
self = <MySQLdb.cursors.Cursor object>, self.errorhandler = <bound method Connection.defaulterrorhandler of ... 'internal-db.s36040.gridserver.com' at 88f1aa4>>, exc = <class _mysql_exceptions.ProgrammingError>, value = <_mysql_exceptions.ProgrammingError instance>
 /usr/lib/python2.4/site-packages/MySQLdb/connections.py in defaulterrorhandler(connection=<_mysql.connection open to 'internal-db.s36040.gridserver.com' at 88f1aa4>, cursor=<MySQLdb.cursors.Cursor object>, errorclass=<class _mysql_exceptions.ProgrammingError>, errorvalue=<_mysql_exceptions.ProgrammingError instance>)
   31     else:
   32         connection.messages.append(error)
   33     raise errorclass, errorvalue
   34 
   35 
errorclass = <class _mysql_exceptions.ProgrammingError>, errorvalue = <_mysql_exceptions.ProgrammingError instance>

ProgrammingError: (1146, "Table 'db36040_simosito.downloads' doesn't exist")
      args = (1146, "Table 'db36040_simosito.downloads' doesn't exist")