_Auction::get_szItemTableName, put_szItemTableName

Ee798767.c++_off(en-US,CS.10).gifEe798767.vb_on(en-US,CS.10).gif

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

Definition

Get method:

HRESULT _Auction::get_szItemTableName(BSTR*szItemTableName);

Put method:

HRESULT _Auction::put_szItemTableName(BSTRszItemTableName);

Parameters

szItemTableName

[in] When putting the property, a BSTR that contains the Item table name.
[out, retval] When getting the property, a pointer to a BSTR used to return the Item 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 Item table contains information about items available for auction. The default name of this table in the site database is Auction_item.

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.