ISFDB banner

Authors for Publisher Variant Publications, Sorted by Name

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

Sort by Publication CountReturn to the publisher page

Note that the statistics below count the number of publications associated with publication-level authors and editors. They do not count the authors of individual titles (stories, poems, etc.) contained in publications. Each edition of a book increments its author's count. Different forms of an author's name, e.g. 'Mary Shelley' vs. 'Mary W. Shelley', are counted separately. --> -->

 
 
<class 'MySQLdb._exceptions.ProgrammingError'>
Python 2.7.18: /usr/bin/python
Sat Apr 27 19:29:06 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_authors.cgi in <module>()
     48                 author_name = author[1]
     49                 author_count = author[2]
=>   50                 table.rows.append((ISFDBLink('ea.cgi', author_id, author_name), ISFDBLink('publisher_one_author.cgi', '%d+%d' % (publisher_id, author_id), author_count)))
     51         table.PrintTable()
     52 
table = <library.ISFDBTable instance>, table.rows = [], table.rows.append = <built-in method append of list object>, ISFDBLink = <function ISFDBLink>, author_id = 249808, author_name = 'James S. Aaron', publisher_id = 64585, author_count = 10
 /home/stoecker/isfdb/install/cgi-bin/library.py in ISFDBLink(script='ea.cgi', record_id=249808, displayed_value='James S. Aaron', 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 SQLloadTransAuthorNames>, record_id = 249808
 /home/stoecker/isfdb/install/cgi-bin/SQLparsing.py in SQLloadTransAuthorNames(author_id=249808)
   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=249808'
 /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=249808')
    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=249808'

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