Image | Audio | Video |
---|---|---|
X |
Returns the names of inaccessible files that are referred to in video columns of user tables. The application must be connected to a database before calling this API.
It is important that you free up the resources that are allocated by this API after calling it. Specifically, you must free up the filelist data structure as well as the filename field in each entry in the filelist.
Authorization
SYSADM, SYSCTRL, SYSMAINT
Library file
OS/2 and Windows | AIX, HP-UX, and Solaris |
---|---|
dmbvideo.lib | libdmbvideo.a (AIX) |
| libdmbvideo.sl (HP-UX) |
| libdmbvideo.so (Solaris) |
Include file
dmbvideo.h
Syntax
long DBvAdminGetInaccessibleFiles( char *qualifier, long *count, FILEREF *(*fileList) );
Parameters
Error codes
Examples
List all inaccessible files that are referred to in video columns of tables that are owned by user ID rsmith:
#include <dmbvideo.h> long idx; rc = DBvAdminGetInaccessibleFiles ("rsmith", &count, &filelist);