Skip to content

Latest commit

 

History

History
49 lines (40 loc) · 1.75 KB

File metadata and controls

49 lines (40 loc) · 1.75 KB
title Read Method | Microsoft Docs
ms.prod sql
ms.prod_service connectivity
ms.technology connectivity
ms.custom
ms.date 01/19/2017
ms.reviewer
ms.topic conceptual
apitype COM
f1_keywords
Stream::raw_Read
_Stream::Read
helpviewer_keywords
Read method [ADO]
ms.assetid 838502de-80f1-4eeb-8838-dd3d9403e567
author MightyPen
ms.author genemi

Read Method

Reads a specified number of bytes from a binary Stream object.

Syntax

  
Variant = Stream.Read ( NumBytes)  

Parameters

NumBytes
Optional. A Long value that specifies the number of bytes to read from the file or the StreamReadEnum value adReadAll, which is the default.

Return Value

The Read method reads a specified number of bytes or the entire stream from a Stream object and returns the resulting data as a Variant.

Remarks

If NumBytes is more than the number of bytes left in the Stream, only the bytes remaining are returned. The data read is not padded to match the length specified by NumBytes. If there are no bytes left to read, a variant with a null value is returned. Read cannot be used to read backwards.

Note

NumBytes always measures bytes. For text Stream objects (Type is adTypeText), use ReadText.

Applies To

Stream Object (ADO)

See Also

ReadText Method