VHF Contest " Day of radio "

4-5 May 2024
Preliminary Results
This page is still in testing mode, be patient!!
Deadline to submit your logs was 322 days ago: 13-May-2024



--> -->
 
 
InternalError
Python 3.12.3: /home/bfrvhfc/public_html/cgi-bin/LOGS2024/../../../.venv/bin/python
Tue Apr 1 04:07:00 2025

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/bfrvhfc/public_html/cgi-bin/LOGS2024/logcheck2024may.py in <module>
   1871 html_header()
   1872 
=> 1873 if not contest():
   1874     select_contest()
   1875     print("x.....x<br>")
contest = <function contest>
 /home/bfrvhfc/public_html/cgi-bin/LOGS2024/logcheck2024may.py in contest()
   1766     elif view_call == "":
   1767         print("""<div id="main">""")
=> 1768         summary(table)
   1769         print("</div>")
   1770     else:
global summary = <function summary>, global table = '2024may'
 /home/bfrvhfc/public_html/cgi-bin/LOGS2024/logcheck2024may.py in summary(table='2024may')
    930 
    931     query = f"SELECT count(distinct call_r) FROM {table} WHERE call_r LIKE %s"
=>  932     cursor.execute(query, (like_str,))
    933     p_lz = cursor.fetchone()
    934 
global cursor = <mysql.connector.cursor_cext.CMySQLCursor object>, cursor.execute = <bound method CMySQLCursor.execute of <mysql.connector.cursor_cext.CMySQLCursor object>>, query = 'SELECT count(distinct call_r) FROM 2024may WHERE call_r LIKE %s', like_str = 'LZ%'
 /home/bfrvhfc/.venv/lib/python3.12/site-packages/mysql/connector/cursor_cext.py in execute(self=<mysql.connector.cursor_cext.CMySQLCursor object>, operation='SELECT count(distinct call_r) FROM 2024may WHERE call_r LIKE %s', params=('LZ%',), map_results=False)
    311             raise ProgrammingError("Cursor is not connected", 2055) from err
    312 
=>  313         self._connection.handle_unread_result()
    314         self.reset()
    315 
self = <mysql.connector.cursor_cext.CMySQLCursor object>, self._connection = <weakproxy at 0x720372f461b0 to CMySQLConnection>, self._connection.handle_unread_result = <bound method CMySQLConnection.handle_unread_res...nnector.connection_cext.CMySQLConnection object>>
 /home/bfrvhfc/.venv/lib/python3.12/site-packages/mysql/connector/connection_cext.py in handle_unread_result(self=<mysql.connector.connection_cext.CMySQLConnection object>, prepared=False)
   1103             self.consume_results()
   1104         elif unread_result:
=> 1105             raise InternalError("Unread result found")
   1106 
   1107     def reset_session(
global InternalError = <class 'mysql.connector.errors.InternalError'>

InternalError: Unread result found
      add_note = <built-in method add_note of InternalError object>
      args = (-1, 'Unread result found', None)
      errno = -1
      msg = 'Unread result found'
      sqlstate = None
      with_traceback = <built-in method with_traceback of InternalError object>