I'm logging events to a mysql database in my app, using ExecNonQueryBatch to perform INSERTs
Since I'm not really interested in the completion of the query, the event sub is just a stub to avoid an undefined sub exception
Sometimes I see this messages in the system log
sending message to waiting queue (sql_nonquerycomplete)
Ignoring event (too many queued events: sql_nonquerycomplete)
Can this be a problem, or are the the events just discarded?
Since the event sub isn't really doing anything, discarding events shouldn't cause any issue.
Since I'm not really interested in the completion of the query, the event sub is just a stub to avoid an undefined sub exception
B4X:
Public Sub SQL_NonQueryComplete (Success As Boolean)
'nothing to do here, just to avoid exception
End Sub
Sometimes I see this messages in the system log
sending message to waiting queue (sql_nonquerycomplete)
Ignoring event (too many queued events: sql_nonquerycomplete)
Can this be a problem, or are the the events just discarded?
Since the event sub isn't really doing anything, discarding events shouldn't cause any issue.