ISFDB banner

Publisher: Eclipse Books (Australia)

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

Note: There are other publishers with the same name: --> -->
 
 
<class 'MySQLdb._exceptions.ProgrammingError'>
Python 2.7.18: /usr/bin/python
Sat Apr 27 22:37:05 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>()
     37         if other_publishers:
     38                 print '<h3>Note: There are other publishers with the same name:'
=>   39                 displayRecordList('publisher', other_publishers)
     40                 print '</h3>'
     41         print '<ul>'
displayRecordList = <function displayRecordList>, other_publishers = [(1252, 'Eclipse Books', None, None)]
 /home/stoecker/isfdb/install/cgi-bin/common.py in displayRecordList(record_type='publisher', records=[(1252, 'Eclipse Books', None, None)])
    818 
    819 def displayRecordList(record_type, records):
=>  820         print LIBbuildRecordList(record_type, records)
    821 
    822 def displayAuthorById(id, name, trans_authors = None):
global LIBbuildRecordList = <function LIBbuildRecordList>, record_type = 'publisher', records = [(1252, 'Eclipse Books', None, None)]
 /home/stoecker/isfdb/install/cgi-bin/library.py in LIBbuildRecordList(record_type='publisher', records=[(1252, 'Eclipse Books', None, None)])
   1943                         output += ', '
   1944                 else:
   1945                         first = 0
=> 1946                 output += ISFDBLink(cgi_script, record_id, record_name, False, '')
   1947         return output
output = '', global ISFDBLink = <function ISFDBLink>, cgi_script = 'publisher.cgi', record_id = 1252, record_name = 'Eclipse Books', builtin False = False
 /home/stoecker/isfdb/install/cgi-bin/library.py in ISFDBLink(script='publisher.cgi', record_id=1252, displayed_value='Eclipse Books', brackets=False, argument='', transliterations=None)
    463         # use that function to retrieve transliterations
    464         elif trans_function and str(record_id).isdigit():
=>  465                 trans_values = trans_function(record_id)
    466         # If transliterated values have been found, add them to the link
    467         if trans_values:
trans_values = None, trans_function = <function SQLloadTransPublisherNames>, record_id = 1252
 /home/stoecker/isfdb/install/cgi-bin/SQLparsing.py in SQLloadTransPublisherNames(publisher_id=1252)
   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=1252'
 /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=1252')
    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=1252'

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