ISFDB banner

Title: The Warrior Who Carried Life

You are not logged in. If you create a free account and sign in, you will be able to customize what is displayed.

--> -->
 
 
<class 'MySQLdb._exceptions.ProgrammingError'>
Python 2.7.18: /usr/bin/python
Mon Apr 29 06:02:11 2024

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

 /home/stoecker/isfdb/install/cgi-bin/title.cgi in <module>()
    220 
    221         # Transliterated title(s)
=>  222         trans_titles = SQLloadTransTitles(title_id)
    223 
    224         if title[TITLE_TTYPE] == 'REVIEW':
trans_titles undefined, SQLloadTransTitles = <function SQLloadTransTitles>, title_id = 1
 /home/stoecker/isfdb/install/cgi-bin/SQLparsing.py in SQLloadTransTitles(title_id=1)
   1740 def SQLloadTransTitles(title_id):
   1741         query = "select trans_title_title from trans_titles where title_id=%d" % int(title_id)
=> 1742         db.query(query)
   1743         result = db.store_result()
   1744         row = result.fetch_row()
global db = <_mysql.connection open to '127.0.0.1'>, db.query = <bound method Connection.query of <_mysql.connection open to '127.0.0.1'>>, query = 'select trans_title_title from trans_titles where title_id=1'
 /usr/lib64/python2.7/site-packages/MySQLdb/connections.py in query(self=<_mysql.connection open to '127.0.0.1'>, query='select trans_title_title from trans_titles where title_id=1')
    237         if isinstance(query, bytearray):
    238             query = bytes(query)
=>  239         _mysql.connection.query(self, query)
    240 
    241     def _bytes_literal(self, bs):
global _mysql = <module 'MySQLdb._mysql' from '/usr/lib64/python2.7/site-packages/MySQLdb/_mysql.so'>, _mysql.connection = <type '_mysql.connection'>, _mysql.connection.query = <method 'query' of '_mysql.connection' objects>, self = <_mysql.connection open to '127.0.0.1'>, query = 'select trans_title_title from trans_titles where title_id=1'

<class 'MySQLdb._exceptions.ProgrammingError'>: (1146, "Table 'isfdb.trans_titles' doesn't exist")
      args = (1146, "Table 'isfdb.trans_titles' doesn't exist")
      message = ''