AtvSoftware
Home
Products
About Us
Contact Us
« Return To Products //



Database Event Alerter For Firebird
Description How to Install How to Use How to Uninstall FAQ

Version: 2.1
Requirements: Firebird Server for Windows
File Size: 131 KB
Download License: Free to Try

// Description

The event notification mechanism includes server and client components. An event can be posted by using theserver component. The server component broadcasts event messages to interested client applications.

An application can get messages using a client component. This component is the Sql_messenger ActiveX control. The control allows client application to receive messages for specific event. You can easy build much more sophisticated applications or services using these components. Now, in awaiting some critical data or events an application does not need to query Database Server repeatedly. The SQL Server will notify an application when the data came or event happened.

Copy the fb_messenger.dll over to your Firebird Server \UDF directory.

Add your new function by executing the following SQL command:

DECLARE EXTERNAL FUNCTION xp_messenger
    CSTRING(255), CSTRING(255), CSTRING(255)
    RETURNS INTEGER BY VALUE
    ENTRY_POINT 'fnfb_messenger' MODULE_NAME 'fb_messenger.dll';
select xp_messenger('message','host','dest') from rdb$database;

Where:
@message
- The message string. The maximum string length is 300 characters.

@host
- The destination. Host Name, Host IP, Workgroup Name, Domain Name or '*' can be used as the destination. Use '*' to send a message to all domain/workgroup computers.

@dest
- The Slot Name. Default value is 'events'. Multiple Slot Names now supported. Use: 'ev1;ev2;...evN'

You may drop the UDF by using the SQL command:

DROP EXTERNAL FUNCTION xp_messenger;

Q. What is the purpose of the fg_messenger.dll?
A. The fb_messenger.dll is a User-Defined Function (UDF) for the Firebird Server.

Q. What is the purpose of the sql_messenger.dll?
A. The sql_messenger.dll is an ActiveX control. The control receives messages from the UDF, and calls the OnData() method for each message.

Q. If I want to receive messages from fb_messenger, do I have to establish a connection with the Firebird Server?
A. No, you don't need to establish connection with the Firebird Server.

Q. What mechanism is used by the UDF to send messages?
A. Windows mailslots are used to deliver the messages.

Q. Why do I receive each message twice?
A. It happens when the server or workstation has two NICs.

Q. If I have a router between the Firebird Server and a workstation, can I send messages to the workstation?
A. If you have a router between Firebird Server and workstation, you only cannot broadcast messages. Fb_messenger sends a broadcast message when @dest='*'. If @dest parameter has a workstation name or its IP address, the workstation will be able to receive messages from the extended stored procedure.

Q. Can you tell me more about licenses?
A. We have several types of licenses.
- Standard: The fb_messenger.dll may be installed on one copy of the Firebird Server.
- Developer: We will provide you with two licenses. One license is a standard license for your developer Firebird Server. The second one is a distribution license. It permits distribution of fb_messenger.dll with products developed in your company. You may only use the distribution license outside of your company.
- Pro: 20 standard licenses.

// Top Products   WinCrypto
  Xp_Pop3
  Xp_smtp
  Xp_adsi
  DB Event Alerter [MS SQL]
  DB Event Alerter [Postgre SQL]
  DB Event Alerter [Firebird]
  DB Event Alerter [MySQL]
  DB Event Alerter [Oracle]
  VFP Post_event Library

Go Back Go Up Go Forward Copyright © AtvSoftware 2023