ISFDB banner

All Tags for Series Flood

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:34:08 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/seriestags.cgi in <module>()
     28 
     29         ser = series(db)
=>   30         ser.load(series_id)
     31 
     32         user = User()
ser = <seriesClass.series instance>, ser.load = <bound method series.load of <seriesClass.series instance>>, series_id = 21125
 /home/stoecker/isfdb/install/cgi-bin/seriesClass.py in load(self=<seriesClass.series instance>, id=21125, fullLoad=1)
     50 
     51         def load(self, id, fullLoad = 1):
=>   52                 self.loadCommon(id, 0, fullLoad)
     53 
     54         def loadXML(self, id, fullLoad = 1):
self = <seriesClass.series instance>, self.loadCommon = <bound method series.loadCommon of <seriesClass.series instance>>, id = 21125, fullLoad = 1
 /home/stoecker/isfdb/install/cgi-bin/seriesClass.py in loadCommon(self=<seriesClass.series instance>, id=21125, doXML=0, fullLoad=1)
     67                                 self.used_name = 1
     68 
=>   69                         res2 = SQLloadTransSeriesNames(record[PUB_SERIES_ID])
     70                         if res2:
     71                                 self.series_trans_names = res2
res2 undefined, global SQLloadTransSeriesNames = <function SQLloadTransSeriesNames>, record = (21125, 'Flood', None, None, None, None), global PUB_SERIES_ID = 0
 /home/stoecker/isfdb/install/cgi-bin/SQLparsing.py in SQLloadTransSeriesNames(series_id=21125)
   1729 def SQLloadTransSeriesNames(series_id):
   1730         query = "select trans_series_name from trans_series where series_id=%d" % int(series_id)
=> 1731         db.query(query)
   1732         result = db.store_result()
   1733         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_series_name from trans_series where series_id=21125'
 /usr/lib64/python2.7/site-packages/MySQLdb/connections.py in query(self=<_mysql.connection open to '127.0.0.1'>, query='select trans_series_name from trans_series where series_id=21125')
    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_series_name from trans_series where series_id=21125'

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