ISFDB banner

Publisher Directory: Kp

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 07:27:15 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/directory.cgi in <module>()
     79 
     80         if dir_type == 'publisher':
=>   81                 records_map = SQLGetPublisherDirectory()
     82         elif dir_type == 'magazine':
     83                 records_map = SQLGetMagazineDirectory()
records_map undefined, SQLGetPublisherDirectory = <function SQLGetPublisherDirectory>
 /home/stoecker/isfdb/install/cgi-bin/SQLparsing.py in SQLGetPublisherDirectory()
    834                 UNION
    835                 select trans_publisher_name from trans_publisher"""
=>  836         return _ASCIIDirectory(query)
    837 
    838 def _ASCIIDirectory(query):
global _ASCIIDirectory = <function _ASCIIDirectory>, query = 'select publisher_name from publishers\n ... select trans_publisher_name from trans_publisher'
 /home/stoecker/isfdb/install/cgi-bin/SQLparsing.py in _ASCIIDirectory(query='select publisher_name from publishers\n ... select trans_publisher_name from trans_publisher')
    838 def _ASCIIDirectory(query):
    839         import unicodedata
=>  840         db.query(query)
    841         result = db.store_result()
    842         record = 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 publisher_name from publishers\n ... select trans_publisher_name from trans_publisher'
 /usr/lib64/python2.7/site-packages/MySQLdb/connections.py in query(self=<_mysql.connection open to '127.0.0.1'>, query='select publisher_name from publishers\n ... select trans_publisher_name from trans_publisher')
    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 publisher_name from publishers\n ... select trans_publisher_name from trans_publisher'

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