ISFDB banner

Summary 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
Sat Apr 27 21:41:23 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/ea.cgi in <module>()
     20 if __name__ == '__main__':
     21 
     22         bib = Bibliography()
     23         bib.page_type = 'Summary'
=>   24         bib.displayBiblio()
bib = <biblio.Bibliography instance>, bib.displayBiblio = <bound method Bibliography.displayBiblio of <biblio.Bibliography instance>>
 /home/stoecker/isfdb/install/cgi-bin/biblio.py in displayBiblio(self=<biblio.Bibliography instance>)
    197         ####################################################
    198         def displayBiblio(self):
=>  199                 self.printHeaders()
    200                 self.printAuthorData()
    201                 self.loadAllAuthorTitles()
self = <biblio.Bibliography instance>, self.printHeaders = <bound method Bibliography.printHeaders of <biblio.Bibliography instance>>
 /home/stoecker/isfdb/install/cgi-bin/biblio.py in printHeaders(self=<biblio.Bibliography instance>)
    740                         sys.exit(0)
    741 
=>  742                 self.loadAuthorData()
    743 
    744                 PrintNavbar('author', self.author_name, self.au_id, self.cgi_script, self.au_id)
self = <biblio.Bibliography instance>, self.loadAuthorData = <bound method Bibliography.loadAuthorData of <biblio.Bibliography instance>>
 /home/stoecker/isfdb/install/cgi-bin/biblio.py in loadAuthorData(self=<biblio.Bibliography instance>)
    253                 self.au_id = self.au_data[AUTHOR_ID]
    254                 SQLupdateAuthorViews(self.au_id)
=>  255                 self.au_trans_names = SQLloadTransAuthorNames(self.au_id)
    256                 self.au_trans_legal_names = SQLloadTransLegalNames(self.au_id)
    257                 self.au_emails = SQLloadEmails(self.au_id)
self = <biblio.Bibliography instance>, self.au_trans_names = [], global SQLloadTransAuthorNames = <function SQLloadTransAuthorNames>, self.au_id = 277313
 /home/stoecker/isfdb/install/cgi-bin/SQLparsing.py in SQLloadTransAuthorNames(author_id=277313)
   1773 def SQLloadTransAuthorNames(author_id):
   1774         query = "select trans_author_name from trans_authors where author_id=%d" % int(author_id)
=> 1775         db.query(query)
   1776         result = db.store_result()
   1777         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_author_name from trans_authors where author_id=277313'
 /usr/lib64/python2.7/site-packages/MySQLdb/connections.py in query(self=<_mysql.connection open to '127.0.0.1'>, query='select trans_author_name from trans_authors where author_id=277313')
    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_author_name from trans_authors where author_id=277313'

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