Invalid request BLR at offset 258 , function HASHMD5 is not defined?

五迷三道 提交于 2019-11-28 10:14:29

问题


I am using Firebird 2_5 database with c#, at inserting data into Firebird databse i have this error please how to solve this r?

"FirebirdSql.Data.FirebirdCliente.FbException (0x80004005):invalid request BLR at offset 258
function HASHMD5 is not defined
No message for error code 335544932 found"

'


回答1:


Firebird itself does not have a function called HASHMD5. Firebird also has UDFs (user defined functions) which allow you to add functions (with a library on the search path of the Firebird application, and a definition in the database).

The error message indicates that your database has a UDF called HASHMD5 defined (and used in a stored procedure, trigger or computed field), but the UDF library is not accessible to Firebird. Reasons might be that it is not on the server, or that the configuration of Firebird disallows access to the UDF library, or the UDF library is 32 bit while Firebird is 64 bit (or vice versa).

By default UDFs are located in the udf folder in the firebird installation.

Searching for "firebird udf hashmd5" does not return any relevant results, which suggests that this is not a publicly available UDF and therefor most likely is specific to your company or to the application you are using.



来源:https://stackoverflow.com/questions/19455485/invalid-request-blr-at-offset-258-function-hashmd5-is-not-defined

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!