Is a regular firebird server send all logged event counts when any logged event fails?
For example, on the firebirds website, I do this:
class FirebirdListenerTest { public FirebirdListenerTest() { try { FbConnectionStringBuilder cs = new FbConnectionStringBuilder(); cs.DataSource = "localhost"; cs.Database = "C:\\FIREBIRD\\TEST.GDB"; cs.UserID = "SYSDBA"; cs.Password = "masterkey"; cs.Charset = "NONE"; FbConnection connection = new FbConnection(cs.ToString()); connection.Open(); FbRemoteEvent revent = new FbRemoteEvent(connection); revent.AddEvents(new string[] { "text_changed", "text_inserted", "justtest_event" });
In such code, if any of the events is raised, I always get counts for all events. How should this work?
source share