IBM Books

Image, Audio, and Video Extenders Administration and Programming

MaxBytesPerSec


Image Audio Video
    X

Returns the maximum throughput of a video in bytes per second.

Include file

dmbvideo.h

Syntax

>>-MaxBytesPerSec--(--handle--)--------------------------------><
 

Parameters (data type)

handle (DB2VIDEO)
Column name or host variable that contains the handle of the video.

Return values (data type)

Throughput of video (INTEGER). Returns a null value if the throughput rate is variable.

Examples

Get the maximum throughput of the video that is stored in the video column of the employee table for Anita Jones:

EXEC SQL BEGIN DECLARE SECTION;
long hvMax_BytesPS;
EXEC SQL END DECLARE SECTION;
 
EXEC SQL SELECT MAXBYTESPERSEC(VIDEO)
     INTO :hvMax_BytesPS
     FROM EMPLOYEE
     WHERE NAME='Anita Jones';


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