IBM Books

Image, Audio, and Video Extenders Administration and Programming

QbQueryNameDelete


Image Audio Video
X    

Deletes a query object. The query object must have been named and stored using the QbQueryNameCreate API.

Notes:

  1. EEE Only: QbQueryNameDelete is not supported in a partitioned database environment.

  2. QbQueryNameDelete will be deprecated in future releases for non-partitioned database environments.

Authorization

None.

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

libdmbqqry.sl (HP-UX)

libdmbqqry.so (Solaris)

Include file

dmbqbapi.h

Syntax

SQLRETURN QbQueryNameDelete(
      char *name
      );

Parameters

name (in)
The name of the query object you are deleting.

Error codes

qbiECinvalidQueryHandle
The queryobject handle that you specified does not reference a valid query object.

Examples

Delete the query object named fshavgcol:

#include <dmbqbapi.h>
 
rc = QbQueryNameDelete("fshavgcol",);


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