Summary Bibliography: Robert Foster (author)
You are not logged in. If you
create a free account
and sign in, you will be able to customize what is displayed.
--> -->
<class '_mysql_exceptions.OperationalError'> | Python 2.5: /usr/bin/python Wed Jul 6 05:27:49 2022 |
A problem occurred in a Python script. Here is the sequence of
function calls leading up to the error, in the order they occurred.
/var/www/cgi-bin/ea.cgi in () |
20 if __name__ == '__main__':
|
21
|
22 bib = Bibliography()
|
23 bib.page_type = 'Summary'
|
24 bib.displayBiblio()
|
bib = <biblio.Bibliography instance at 0x917ff2c>, bib.displayBiblio = <bound method Bibliography.displayBiblio of <biblio.Bibliography instance at 0x917ff2c>> |
/var/www/cgi-bin/biblio.py in displayBiblio(self=<biblio.Bibliography instance at 0x917ff2c>) |
197 ####################################################
|
198 def displayBiblio(self):
|
199 self.printHeaders()
|
200 self.printAuthorData()
|
201 self.loadAllAuthorTitles()
|
self = <biblio.Bibliography instance at 0x917ff2c>, self.printHeaders = <bound method Bibliography.printHeaders of <biblio.Bibliography instance at 0x917ff2c>> |
/var/www/cgi-bin/biblio.py in printHeaders(self=<biblio.Bibliography instance at 0x917ff2c>) |
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 at 0x917ff2c>, self.loadAuthorData = <bound method Bibliography.loadAuthorData of <biblio.Bibliography instance at 0x917ff2c>> |
/var/www/cgi-bin/biblio.py in loadAuthorData(self=<biblio.Bibliography instance at 0x917ff2c>) |
259 self.au_is_pseudonym = SQLauthorIsPseudo(self.au_id)
|
260 self.au_has_pseudonyms = SQLauthorHasPseudo(self.au_id)
|
261 self.au_tags = SQLgetAuthorTags(self.au_id, int(self.user.id))
|
262
|
263 def loadAllAuthorTitles(self):
|
self = <biblio.Bibliography instance at 0x917ff2c>, self.au_tags = [], global SQLgetAuthorTags = <function SQLgetAuthorTags at 0xb6ef4df4>, self.au_id = 181137L, builtin int = <type 'int'>, self.user = <login.User instance at 0x919142c>, self.user.id = 0 |
/var/www/cgi-bin/SQLparsing.py in SQLgetAuthorTags(author_id=181137L, user_id=0) |
2422 query += " and (tags.tag_status=0 or tag_mapping.user_id=%d)" % user_id
|
2423 query += " group by tag_mapping.tag_id order by xx desc"
|
2424 db.query(query)
|
2425 result = db.store_result()
|
2426 record = result.fetch_row()
|
global db = <_mysql.connection open to 'localhost' at 9123994>, db.query = <built-in method query of Connection object at 0x9123994>, query = 'select distinct tag_mapping.tag_id,tags.tag_name...d=0) group by tag_mapping.tag_id order by xx desc' |
<class '_mysql_exceptions.OperationalError'>: (1030, 'Got error 28 from storage engine')