ADO.NET Provider for Zoho Books

Build 22.0.8462

Currencies

To list, add, update and delete currencies configured. Also, get the details of a currency.

Table Specific Information

Select

The provider will use the Zoho Books API to process WHERE clause conditions built with the following column and operator. The rest of the filter is executed client side within the provider.

  • CurrencyFilter supports the '=' comparison.
  • CurrencyId supports the '=' comparison.
For example:
    SELECT * FROM Currencies WHERE CurrencyId = '1894553000000000099'

    SELECT * FROM Currencies WHERE CurrencyFilter = 'Currencies.ExcludeBaseCurrency'

Insert

Insert can be executed by specifying the CurrencyCode,CurrencyFormat 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 Currencies (currencycode,currencyformat) VALUES ('AUD','1,234,567.89')

Update

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

UPDATE Currencies SET CurrencyCode = 'AUD',CurrencyFormat='1,234,567.89', PricePrecision='2' WHERE CurrencyId = '3285934000000000105'

Delete

Delete can be executed by specifying the CurrencyId in the WHERE Clause For example:

DELETE FROM Currencies WHERE CurrencyId = '3285934000000000105'

Columns

Name Type ReadOnly References SupportedOperators Description
CurrencyId [KEY] String True

Currency Id of the customer's currency.

CurrencyName String True

Name of a currency.

CurrencyCode String False

Code of a currency.

CurrencyFormat String False

Format of a currency.

CurrencySymbol String False

Symbol of a currency.

EffectiveDate Date True

Date which the exchange rate is applicable for the currency.

ExchangeRate Decimal True

Exchange rate of the currency.

IsBaseCurrency Boolean True

Check of it is a base currency.

PricePrecision Integer False

The precision for the price.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.

Name Type Description
CurrencyFilter String

Filter currencies excluding base currency.

The allowed values are Currencies.ExcludeBaseCurrency.

Copyright (c) 2023 CData Software, Inc. - All rights reserved.
Build 22.0.8462