Skip to content

Latest commit

 

History

History
44 lines (38 loc) · 2.47 KB

File metadata and controls

44 lines (38 loc) · 2.47 KB
title Source Property (ADO Error) | 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
Error::get_Source
Error::Source
Error::GetSource
helpviewer_keywords
Source property [ADO Error]
ms.assetid 4044ba15-f013-4c4c-9fe1-b4410fe9a778
author MightyPen
ms.author genemi

Source Property (ADO Error)

Indicates the name of the object or application that originally generated an error.

Return Value

Returns a String value that indicates the name of an object or application.

Remarks

Use the Source property on an Error object to determine the name of the object or application that originally generated an error. This could be the object's class name or programmatic ID. For errors in ADO, the property value will be ADODB.ObjectName, where ObjectName is the name of the object that triggered the error. For ADOX and ADO MD, the value will be ADOX.ObjectName and ADOMD.ObjectName, respectively.

Based on the error documentation from the Source, Number, and Description properties of Error objects, you can write code that will handle the error appropriately.

The Source property is read-only for Error objects.

Applies To

Error Object

See Also

Description, HelpContext, HelpFile, NativeError, Number, Source, and SQLState Properties Example (VB)
Description, HelpContext, HelpFile, NativeError, Number, Source, and SQLState Properties Example (VC++)
Description Property
HelpContext, HelpFile Properties
Number Property (ADO)
Source Property (ADO Record)
Source Property (ADO Recordset)