Hola amigos estoy intentando usar eventos pero este me da un error, estoy usando FireBird Embebido
a continuación les pongo el código que tengo, Creo el evento en la base de datos asi.
Código SQL
[-]CREATE TRIGGER TR_POST_NEW_REG FOR CLIENT_TBL
ACTIVE AFTER INSERT " +
AS
BEGIN
POST_EVENT 'new_reg';
END
Y en .Net tengo el código de esta manera.
Código:
FbConnectionStringBuilder fbCSB = new FbConnectionStringBuilder();
fbCSB.ServerType = FbServerType.Embedded;
fbCSB.Database = urlDB;
fbCSB.UserID = userID;
fbCSB.Password = pswDB;
fbCSB.ClientLibrary = Application.StartupPath + @"\fbembed.dll";
FbConnection fbCnn = new FbConnection(fbCSB.ConnectionString);
fbCnn.Open();
//Crea el controlador de evento
FbRemoteEvent fbEvent = new FbRemoteEvent(fbCnn);
fbEvent.AddEvents(new string[] { "new_reg" });
// Add callback to the Firebird events
fbEvent.RemoteEventCounts += new FbRemoteEventEventHandler(EventCounts);
// Queue events
fbEvent.QueueEvents();
El asunto es que cuando llega al punto de FbRemoteEvent fbEvent = new FbRemoteEvent(fbCnn); me da el siguiente error.
"El método especificado no es compatible"
¿Por que me da este error?
Muchas Gracias por su ayuda.
Saludos