I am trying to synchronize two Firebird databases with each other. First of all, I already configured that the synchronization will be one-way. Therefore, one database is th
The error means that Firebird can't find the entrypoint or library when the function is executed. This means that
UdfAccess
configurationYour problem seems to be the first, and the solution is to add the location of the UDF to the UdfAccess
configuration. Given the comments, you should use
UdfAccess = Restrict UDF
Which will only allow UDF libraries from the UDF
directory of your Firebird installation. If needed you can list multiple directories separated by ;
.
You should never use UdfAccess = Full
, it is unsafe as it can possibly be used to compromise your system with any library on the (library) path of your system.