PB:库管理函数

库管理函数

1、LibraryCreate()

功  能:创建一个空的PowerBuilder应用库,并可根据需要在创建应用库的同时添加库注解。

语  法:LibraryCreate ( libraryname{, comments } )

参  数:libraryname:string类型,指定要创建应用库的名称,可以带上路径,不带路径时在当前目录下创建应用库;

comments:string类型,可选项,指定要创建的应用库的注解。

返回值:Integer。函数执行成功时返回1,发生错误时返回-1。如果任何参数的值为NULL,LibraryCreate()函数返回NULL。

用  法:LibraryCreate()函数在指定路径下创建一个空的PowerBuilder应用库(PBL)。如果在指定应用库名称时没有指定文件的扩展名,那么该函数自动加上扩展名.PBL。

示  例:This statement in Windows NT creates a library named dwTemp in the PB directory on drive C and associates a comment with the library:

LibraryCreate("c:\pb\dwTemp.pbl", "Temporary library for dynamic DataWindows")

2、LibraryDelete()

功  能:删除应用库库文件或应用库中的数据窗口对象。

语  法:LibraryDelete ( libraryname{, objectname, objectty

你可能感兴趣的:(PowerBuilder,pb,powerbuilder)