Does Firebird have functions like ABS, SIN, COS, FLOOR, LOG, TRIM, MOD, STRLEN?
Update: Firebird 2.1 has many of these functions integrated into the main engine, so you don't need to declare UDFs any more. Please read the release notes document for more information. The following FAQ still applies for older versions of Firebird and for functions which are not yet part of the core engine:
Firebird engine has a limited number of functions that are always available. However, it supports the User Defined Functions (UDF) which can be written in any programming language that can be compiled into DLL library (.so on Linux). Default installation of Firebird features few such libraries containing common functions like ABS, SIN, COS, LOG, TRIM, etc. To use them, you need to register them in your database. Registering into one database makes them only available there, you need to register UDFs in each database where you want to use them. Registration SQL looks like this:
DECLARE EXTERNAL FUNCTION abs
DOUBLE PRECISION
RETURNS DOUBLE PRECISION BY VALUE
ENTRY_POINT 'IB_UDF_abs' MODULE_NAME 'ib_udf';
Take a look in your Firebird installation directory, in UDF subdirectory. The library .so or .dll files are there, together with .sql scripts which you can use to register UDFs in your databases.
If you wish to write your own functions, take a look at FAQ #83 for Delphi example.