IBM Books

Image, Audio, and Video Extenders Administration and Programming

DBvDeleteShotCatalog


Image Audio Video
    X

Deletes a shot catalog.

Authorization

Control, SYSADM, DBADM

Library file
OS/2 and Windows AIX, HP-UX, and Solaris
dmbshot.lib libdmbshot.a (AIX)

libdmbshot.sl (HP-UX)

libdmbshot.so (Solaris)

Include file

dmbshot.h

Syntax

long DBvDeleteShotCatalog(
      char *catalogName,
      SQLHDBC hdbc
      );

Parameters

catalogName (in)
The name of the shot catalog to be deleted.

hdbc (in)
The database handle from SQLConnect.

Error codes

MMDB_SUCCESS
API call processed successfully.

MMDB_RC_ACCESS
Caller does not have proper access authority.

MMDB_RC_NOT_CONNECTED
The application does not have valid connection to a database.

MMDB_RC_INVALID_CATALOG
The catalog is not valid or does not exist.

Delete the shot catalog hotshots:

Examples

#include <dmbshot.h>
 
rc = DBvDeleteShotCatalog("hotshots",
       hdbc);


[ Top of Page | Previous Page | Next Page | Table of Contents | Index ]