ADO.NET Provider for Yahoo! Ads

Build 23.0.8839

FeedSets

Create, Read or delete Item Set information.

Table Specific Information

Select

The 本製品 will use the Yahoo! Ads API to process WHERE clause conditions built with the following column and operator. The AccountId, FeedId is required to make a request and the rest of the filter is executed client-side within the 本製品.

  • AccountId supports the '='.
  • FeedId supports the '='.
  • FeedSetId supports the '=,IN'.
  • IncludeItemCount supports the '='.
For example:
SELECT * FROM FeedSets WHERE AccountId = '1002504155' AND FeedId = '1132453'

INSERT

Insert can be executed by specifying the AccountId, FeedId, ConditionSets and FeedSetName columns. The columns that are not read-only can be inserted optionally. Following is an example of how to insert into this table.

INSERT INTO FeedSetConditionSetsOrCondition#TEMP (CompareOperator, Value) VALUES ('EQUAL', '10000')
INSERT INTO FeedSetConditionSets#TEMP (ConditionType, OrConditions) VALUES ('PRICE', 'FeedSetConditionSetsOrCondition#TEMP')
INSERT INTO FeedSets (AccountId, FeedId, ConditionSets, FeedSetName) VALUES ('1002504155', '1132453', 'FeedSetConditionSets#TEMP', 'TestFeedSet')

DELETE

Delete can be executed by specifying the AccountId, FeedId and FeedSetId in the WHERE Clause. The columns that are not read-only can be Updated. For example:

DELETE FROM FeedSets WHERE AccountId = '1234' AND FeedSetId = '3573618' AND FeedId = '25644'

Columns

Name Type ReadOnly References Description
FeedSetId [KEY] Int64 True

Item Set ID.

AccountId Int64 True

DisplayAdsAccounts.AccountId

Account ID.

FeedId Int64 False

DisplayAdsFeeds.FeedId

Feed ID.

ConditionSets String False

Conditions of Item Set information.

FeedSetName String False

Item Set name.

IsDefaultSet Boolean False

Default setting of Item Set or not.

ItemCount Int64 False

Number of items included in Item Set conditions.

IncludeItemCount Boolean False

number of items of Item Set.

Pseudo-Columns

SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。

Name Type Description
ReferenceNumber String

This column will be used in Bulk operations to get specific values from the Temp tables.

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 23.0.8839