ISFDB banner

Monthly Bibliography

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
Sun Apr 28 00:34:10 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/fc.cgi in <module>()
    545         pub_month.parseArguments()
    546         PrintHeader('Monthly Bibliography')
    547         PrintNavbar('forthcoming', 0, 0, 0, 0)
=>  548         pub_month.load_data()
    549         pub_month.PrintPage()
pub_month = <__main__.PublicationMonth instance>, pub_month.load_data = <bound method PublicationMonth.load_data of <__main__.PublicationMonth instance>>
 /home/stoecker/isfdb/install/cgi-bin/fc.cgi in load_data(self=<__main__.PublicationMonth instance>)
     83 
     84         def load_data(self):
=>   85                 self.loadPubs()
     86                 if not self.pub_list:
     87                         return
self = <__main__.PublicationMonth instance>, self.loadPubs = <bound method PublicationMonth.loadPubs of <__main__.PublicationMonth instance>>
 /home/stoecker/isfdb/install/cgi-bin/fc.cgi in loadPubs(self=<__main__.PublicationMonth instance>)
    107 
    108                 # Populate a dictionary of pub title transliterations indexed by publication ID
=>  109                 self.pub_trans = SQLLoadTransPubTitlesList(self.pub_ids)
    110 
    111         def loadPublishers(self):
self = <__main__.PublicationMonth instance>, self.pub_trans = {}, global SQLLoadTransPubTitlesList = <function SQLLoadTransPubTitlesList>, self.pub_ids = [1003385, 1003601, 1004495]
 /home/stoecker/isfdb/install/cgi-bin/SQLparsing.py in SQLLoadTransPubTitlesList(pub_ids=[1003385, 1003601, 1004495])
   1817                   where p.pub_id = tp.pub_id
   1818                   and p.pub_id in (%s)""" % pub_ids_string
=> 1819         db.query(query)
   1820         result = db.store_result()
   1821         results = {}
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 p.pub_id, tp.trans_pub_title\n ... and p.pub_id in ('1003385','1003601','1004495')"
 /usr/lib64/python2.7/site-packages/MySQLdb/connections.py in query(self=<_mysql.connection open to '127.0.0.1'>, query="select p.pub_id, tp.trans_pub_title\n ... and p.pub_id in ('1003385','1003601','1004495')")
    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 p.pub_id, tp.trans_pub_title\n ... and p.pub_id in ('1003385','1003601','1004495')"

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