ISFDB banner

Publisher: Simon Archer

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
    Sat Apr 27 19:28:22 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/publisher.cgi in <module>()
         41         print '<ul>'
         42         # Transliterated name(s)
    =>   43         trans_names = SQLloadTransPublisherNames(publisher_id)
         44         print '<li><b>Publisher: </b>%s' % ISFDBMouseover(trans_names, publisher[PUBLISHER_NAME], '')
         45         printRecordID('Publisher', publisher_id, user.id)
    trans_names undefined, SQLloadTransPublisherNames = <function SQLloadTransPublisherNames>, publisher_id = 73839
     /home/stoecker/isfdb/install/cgi-bin/SQLparsing.py in SQLloadTransPublisherNames(publisher_id=73839)
       1696 def SQLloadTransPublisherNames(publisher_id):
       1697         query = "select trans_publisher_name from trans_publisher where publisher_id=%d" % int(publisher_id)
    => 1698         db.query(query)
       1699         result = db.store_result()
       1700         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_publisher_name from trans_publisher where publisher_id=73839'
     /usr/lib64/python2.7/site-packages/MySQLdb/connections.py in query(self=<_mysql.connection open to '127.0.0.1'>, query='select trans_publisher_name from trans_publisher where publisher_id=73839')
        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_publisher_name from trans_publisher where publisher_id=73839'

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