ADO.NET Provider for Yahoo! Ads

Build 23.0.8839

PlacementUrlLists

Create, Read, Update or Delete the placement URL list.

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 is required to make a request and the rest of the filter is executed client-side within the 本製品.

  • AccountId supports the '='.
  • UrlListId supports the '=,IN'.

For example:

SELECT * FROM PlacementUrlLists WHERE AccountId = '1002504155'

SELECT * FROM PlacementUrlLists WHERE AccountId = '1002504155' AND UrlListId = '1000908843'

INSERT

Insert can be executed by specifying the AccountId, UrlListName and Urls 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 DisplayAdsPlacementUrlListUrls#TEMP(PlacementUrl) VALUES ('cdata.com')
INSERT INTO PlacementUrlLists(AccountId, UrlListName, Urls) VALUES ('1002504155', 'Testurl', 'DisplayAdsPlacementUrlListUrls#TEMP')

UPDATE

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

INSERT INTO DisplayAdsPlacementUrlListUrls#TEMP(PlacementUrl) VALUES ('cdata.com');
UPDATE PlacementUrlLists SET UrlListName = 'Cdata' WHERE AccountId = '1002504155' AND UrlListId = '1000908844'

DELETE

Delete can be executed by specifying the AccountId and UrlListId in the WHERE Clause. For example:

DELETE FROM PlacementUrlLists  WHERE AccountId = '1002504155' AND UrlListId = '1000908844'

Columns

Name Type ReadOnly References Description
UrlListId [KEY] Int64 True

Url List ID.

AccountId Int64 True

DisplayAdsAccounts.AccountId

Account ID.

BrandSafetyDenyListFlg Boolean False

A flag that indicates whether it is an exclusion list.Only one list can be created per account.Can be linked only to exclusion.Cannot be linked with YDN campaign.

デフォルト値はFALSEです。

Description String False

Url List Description.

IsRemoveDescription String False

Flag for removing an information item.

使用できる値は次のとおりです。TRUE, FALSE, UNKNOWN

UnknownDomainFlg String False

Unknown Domain Flag

使用できる値は次のとおりです。TRUE, FALSE, UNKNOWN

UrlListName String False

Url List Name.

Urls String False

The objects to keep url

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