OrderGroupManager.DebugReturnSQL Property (PIA)

The DebugReturnSQL property is a read/write Boolean that determines if the methods of the OrderGroupManager object will run an SQL query and return the resulting recordset, or if it will construct the SQL Server query and return the query string. This property is intended for internal use only and should not be called externally.

Definition

[Visual Basic .NET]

Imports Microsoft.CommerceServer.Interop.Orders
…
Public property DeleteReturnSQL As Boolean

[C#]

using Microsoft.CommerceServer.Interop.Orders;
…
public bool DeleteReturnSQL( get; set);

Parameters

[C#] [in] When putting a value, a Bool used to determine if methods of this object will run a SQL Server query, or if they will debug the SQL Server connection string.
[out, retval] When getting a value, a Bool used to determine if methods of this object will run a SQL Server query, or if they will debug the SQL Server connection string.

Remarks

If the DebugReturnSQL property is set to False, then the methods such as OrderGroupManager.Find and OrderGroupManager.SimpleFind construct the appropriate SQL Server query, run the query, and return the resulting recordset.

If the DebugReturnSQL property is set to True, then the methods such as OrderGroupManager.Find and OrderGroupManager.SimpleFind construct the appropriate SQL Server query and return the query string.

For more information about memory ownership issues related to COM property and method parameters, see Managing COM Parameter Memory.

Requirements

Namespace: Microsoft.CommerceServer.Interop.Orders

Platforms: Windows 2000, Windows Server 2003

Assembly: Microsoft.CommerceServer.Interop.Orders.Requisition.dll

See Also

OrderGroupManager Class

Copyright © 2005 Microsoft Corporation.
All rights reserved.