Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 12.0.0 (中文) » SQL Anywhere 服务器 - 编程 » SQL Anywhere 外部调用接口

 

卸载外部库

系统过程 dbo.sa_external_library_unload 可用于在外部库不使用时将其卸载。该过程使用一个可选 long varchar 参数。该参数用于指定要卸载的库的名称。如果未指定任何参数,则将卸载所有未使用的外部库。

以下是一个卸载外部函数库的示例。

call sa_external_library_unload('library.dll')

在开发一组外部函数时,该函数非常有用,因为您不必关闭数据库服务器来安装更新版本的库。