Skip to content

Latest commit

 

History

History
45 lines (37 loc) · 1.75 KB

File metadata and controls

45 lines (37 loc) · 1.75 KB
title InfoMessage Event (ADO) | 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
Connection::InfoMessage
InfoMessage
helpviewer_keywords
InfoMessage event [ADO]
ms.assetid 468c87dd-e3bc-4084-9941-94d10743d4e9
author MightyPen
ms.author genemi

InfoMessage Event (ADO)

The InfoMessage event is called whenever a warning occurs during a ConnectionEvent operation.

Syntax

  
InfoMessage pError, adStatus, pConnection  

Parameters

pError
An Error object. This parameter contains any errors that are returned. If multiple errors are returned, enumerate the Errors collection to find them.

adStatus
An EventStatusEnum status value. If a warning occurs, adStatus is set to adStatusOK and the pError contains the warning.

Before this event returns, set this parameter to adStatusUnwantedEvent to prevent subsequent notifications.

pConnection
A Connection object. The connection for which the warning occurred. For example, warnings can occur when opening a Connection object or executing a Command on a Connection.

See Also

ADO Events Model Example (VC++)
ADO Event Handler Summary
Connection Object (ADO)