_Auction::get_szBidTableName, put_szBidTableName

Ee810821.c++_off(en-US,CS.10).gifEe810821.vb_on(en-US,CS.10).gif

The szBidTableName property is a read/write String used to store the name of the Bid table in the database.

Definition

Get method:

HRESULT _Auction::get_szBidTableName(BSTR*szBidTableName);

Put method:

HRESULT _Auction::put_szBidTableName(BSTRszBidTableName);

Parameters

szBidTableName

[in] When putting the property, a BSTR that contains the Bid table name.
[out, retval] When getting the property, a pointer to a BSTR used to return the Bid table name.

Return Values

These methods return an HRESULT indicating whether they completed successfully. See the Error Values section for more details.

Error Values

These methods return S_OK (0x00000000) to indicate success and standard COM HRESULT error values to indicate failure. For more information about standard COM errors, see Standard COM Errors. Additional information may be available using the global Err object, which can be accessed using the API function GetErrorInfo. In particular, the GetDescription method of the IErrorInfo interface may return a text description of the error.

Remarks

The Bid table contains information about bids placed on auction items. The default name for this table in the site database is Auction_bid.

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

See Also

Auction Object


All rights reserved.