ADO.NET Provider for Zoho Books

Build 26.0.9655

Changelog

General Changes

DateVersionSourceCategoryTypeDescription
2026-05-2726.0.9643GeneralConnectionRemoved
  • Removed the deprecated ReplaceInvalidTypesWithNull connection property. Use the ReplaceInvalidValuesWithNull property instead.
2026-05-0726.0.9623GeneralData ModelAdded
  • Added the ColumnCapabilities column to the sys_tablecolumns system table. This column is a bit mask denoting the column's write capabilities.
2026-04-2826.0.9614ADO.NETConnectionAdded
  • Added the following functions to the driver class. If you pass these functions an exception with no error records, an InvalidArgumentException is thrown.
    • containsErrorSource: Returns true if the exception contains an error record for the provided source name, or false otherwise.
    • getErrorCodeFromSource: Returns the numeric error code from the error record with the given source, or -1 if there is no error record from that source.
    • containsErrorCode: Returns true if the exception contains an error record with the provided error code, or false otherwise.
    • findErrorProperty: Returns the value of the property with the given name, or null if no property with that name is defined.
    • formatErrorRecords: Returns a string containing all the exception's error records, including messages, codes, properties, and error locations.
2026-04-1526.0.9601GeneralQuery ExecChanged
  • String comparisons using GREATER, LESS, and CONTAINS operators are now case-insensitive by default.
2026-04-0826.0.9594Zoho BooksSecurityChanged
  • TLS 1.3 is now supported by default for HTTP connections.
2026-04-0126.0.9587ADO.NETAdded
  • Added support for EFCore 10.
2026-01-1325.0.9509GeneralAdded
  • Added support for the REGEXP_REPLACE() string function.
2025-12-0525.0.9470GeneralAdded
  • Added support for the INSERT INTO SELECT statement, with driver-side execution for providers that do not support the operation natively.
2025-10-0625.0.9410GeneralAdded
  • Support for parsing datetime formats using ".S" and ",S" for milliseconds and nanoseconds.
2025-09-1225.0.9386GeneralAdded
  • Added the IsInsertable, IsUpdateable, and IsDeleteable columns to the sys_tables table.
2025-09-1025.0.9384GeneralChanged
  • All columns in statically defined Views are now reported as read-only.
2025-09-0325.0.9377GeneralChanged
  • Corrected the behavior when IN criteria with NULL values are used in the projection part. It now returns NULL instead of 0. For example, "NULL IN (1,2)" returns "NULL".
2025-09-0125.0.9375GeneralAdded
  • Added support for using the CAST function with infinity values. This function can cast "inf" and "-inf" to DOUBLE, FLOAT, or REAL.
2025-08-2525.0.9368Zoho BooksAdded
  • Added columns to the following tables:
    • BankAccounts: 7
    • BankRules: 7
    • BankTransactions: 6
    • BillDetails: 31
    • ChartOfAccounts: 4
    • ContactDetails: 54
    • CreditNoteDetails: 46
    • CustomerContacts: 4
    • CustomerPaymentDetails: 9
    • EstimateDetails: 64
    • ExpenseDetails: 8
    • InvoiceDetails: 76
    • ItemDetails: 29
    • Journals: 13
    • OpeningBalances: 3
    • Projects: 16
    • PurchaseOrderDetails: 39
    • RecurringBillDetails: 25
    • RecurringExpenseDetails: 8
    • RecurringInvoiceDetails: 32
    • RetainerInvoiceDetails: 13
    • SalesOrderDetails: 58
    • Tasks: 1
    • Taxes: 10
    • TaxGroups: 3
    • TimeEntries: 5
    • Users: 14
    • VendorCreditDetails: 18
    • VendorPaymentDetails: 20
  • Added columns to the following views:
    • BillPayments: 1
    • Bills: 15
    • ChartOfAccountTransactions: 5
    • ContactAddresses: 3
    • Contacts: 16
    • CreditNotes: 11
    • CurrencyExchangeRates: 2
    • CustomerPayments: 15
    • EstimateLineItems: 11
    • Estimates: 13
    • Expenses: 4
    • GetContactStatementEmailContent: 10
    • Invoices: 42
    • Items: 9
    • JournalLineItems: 4
    • Organizations: 23
    • PaymentsReceivedReport: 3
    • ProjectPerformanceSummaryReport: 1
    • PurchaseOrders: 7
    • PurchaseOrdersByVendorReport: 1
    • RecurringExpenses: 3
    • RecurringInvoices: 3
    • RetainerInvoiceLineItems: 1
    • RetainerInvoices: 1
    • SalesByCustomerReport: 2
    • SalesOrders: 12
    • VendorCredits: 1
    • VendorPayments: 15
2025-08-2125.0.9364GeneralChanged
  • Report behavior change:
    • Fixed inconsistent string value comparisons in non-table queries.
    • For example, "SELECT 'A' = 'a'" previously returned false, but it now returns true.
2025-08-1325.0.9356GeneralChanged
  • Changed the maximum number of pages held in memory from 15 to 5 for the page providers to decrease heap usage.
2025-07-2425.0.9336Zoho BooksAdded
  • Added the CreditNoteTemplates, EstimateTemplates, InvoiceTemplates, PurchaseOrderTemplates, and SalesOrderTemplates views.
2025-07-1125.0.9323Zoho BooksAdded
  • Added the Scope connection property.
2025-07-0925.0.9321Zoho BooksChanged
  • Renamed the column IsReverseCharge to IsReverseChargeApplied in the BankRules table.
2025-07-0725.0.9319Zoho BooksRemoved
  • Removed the AccountsServer connection property, which had previously been deprecated.
2025-06-2525.0.9307GeneralRemoved
  • Removed the "ADLS Gen 1" value from the ConnectionType property.
2025-06-2025.0.9302GeneralAdded
  • Created the following functions:
    • TEXT_ENCODE: encodes a string into a different charset (UTF8 → UTF7 and returns a binary array as the result).
    • TEXT_DECODE: takes a binary array and decodes it back into a string when provided the charset.
    • BASE64_ENCODE: takes a binary array and encodes it as a base64 string (varchar).
    • BASE64_DECODE: takes a base 64-encoded string and decodes it into a binary array.
2025-06-1825.0.9300GeneralChanged
  • The internal code for exception handling has been refactored. Exception messages returned during certain error conditions may now have different wording or formatting.
2025-05-2925.0.9280ADO.NETChanged
  • We have improved our implementation of the ADO.NET DbDataReader.GetDataTypeName so that it now returns database data type names, such as varchar, tinyint, and datetime. Previously we returned the fully-qualified name of the column’s .NET type, in a format like "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e".
2025-05-2725.0.9278ADO.NETRemoved
  • Removed support for the C# implementation of SQLite. Features that previously used this implementation by default, such as AutoCache and EF6 schema caching, now require the native SQLite driver.
2025-05-2725.0.9278GeneralRemoved
  • Removed the "Proprietary" enum option from ProxyAuthscheme.
2025-02-1524.0.9177GeneralAdded
  • Added support for converting unsigned integer types to the nearest signed data type that has enough precision to hold the unsigned value.This is done for JDBC only because it does not have support for unsigned data types.
2024-12-0324.0.9103Zoho BooksAdded
  • Added region property values to support the following Zoho apps:
    • ZohoBooks: China, Canada, Saudi Arabia
    • ZohoCreator: Canada, Saudi Arabia
    • Zoho Inventory: China, Japan, Canada, Saudi Arabia
    • ZohoCRM: Canada
2024-11-2724.0.9097GeneralAdded
  • Added ThreadId to LogModule output. Logfile lines now include the Thread ID associated with the action being performed.
2024-05-3124.0.8917Zoho BooksAdded
  • Added support for multiple columns in fourteen tables.
2024-05-0924.0.8895GeneralChanged
  • The ROUND function previously did not accept negative precision values. That feature has now been restored.
2024-04-0823.0.8864Zoho BooksAdded
  • Added SKU column for BillLineItems, CreditNoteLineItems, EstimateLineItems, InvoiceLineItems, Items, PurchaseOrderLineItems, RecurringBillLineItems, RecurringInvoiceLineItems, SalesOrderLineItems, VendorCreditLineItems views.
2024-03-1523.0.8840GeneralAdded
  • Created a new SQL function called STRING_COMPARE that provides java's String.compare() ability to SQL queries. Returns a number representative of the compared value of two strings
2024-01-1823.0.8783ADO.NETAdded
  • Added support for EFCore 8.
2023-11-2923.0.8733GeneralChanged
  • The ROUND function doesn't accept the negative precision values anymore.
2023-11-2923.0.8733GeneralChanged
  • The returning types of the FDMonth, FDQuarter, FDWeek, LDMonth, LDQuarter, LDWeek functions are changed from Timestamp to Date.
  • The return type of the ABS function will be consistent with the parameter value type.
2023-11-2823.0.8732GeneralAdded
  • Added the HMACSHA256 formatter to allow for secrets to be decoded if it is in base64 format
2023-11-1523.0.8719ADO.NETChanged
  • NuGet license and icon are now embedded within the package itself, in compliance with the package authoring best practices.
2023-11-0223.0.8706Zoho BooksRemoved
  • Removed support for INSERT and UPDATE from the OpeningBalances table to match the current API behavior.
2023-10-2623.0.8699Zoho BooksChanged
  • Added columns ProjectCode, LastModifiedTime, UsersWorking, CurrencyId, CustomerEmail, BillingRateFrequency columns for Projects table.
2023-10-1023.0.8683Zoho BooksChanged
  • Updated the data type of PaymentNumber column from Integer to String for CustomerPayments, VendorPayments views and CustomerPaymentDetails, VendorPaymentDetails tables.
2023-08-0723.0.8619Zoho BooksChanged
  • Updated the data type of PaymentNumber column from Integer to String.
2023-07-2623.0.8607Zoho BooksRemoved
  • Removed duplicate columns FromAccountId and TransactionType from BankTransactions table.
  • Removed the duplicate column ContactCompanyName from CommittedStockDetailsReport view.
  • Removed the duplicate column TaxType from Taxes table.
  • Removed the duplicate column TimerStartedAt from TimeEntries table.
2023-07-2623.0.8607Zoho BooksChanged
  • Added the column ContactStatus in CommittedStockDetailsReport view.
2023-06-2023.0.8571GeneralAdded
  • Added the new sys_lastresultinfo system table.
2023-05-1223.0.8532Zoho BooksAdded
  • Added Connection String Property Region.
2023-05-0923.0.8529Zoho BooksAdded
  • Added support for CustomModules, CustomModuleFields tables.
  • Added support for CustomModuleFieldDropDownOptions view.
  • Added stored procedure DeleteCustomModuleField.
2023-04-2523.0.8515GeneralRemoved
  • Removed support for the SELECT INTO CSV statement. The core code doesn't support it anymore.
2023-04-1923.0.8509ADO.NETRemoved
  • Removed support for EFCore 3.1.
2023-04-1823.0.8508ADO.NETRemoved
  • Removed support for SSRS 2012
2023-04-1823.0.8508ADO.NETAdded
  • Added support for SSRS 2022.
2023-04-0623.0.8496Zoho BooksAdded
  • Added AddAttachment, AddExpenseReceipt, ApproveAnEntity, BillsApplyCredit, ContactEnableOrDisablePaymentReminder, ContactEnablePortalAccess, ContactSendEmail, DeleteAttachment, DeleteImportedStatement, EmailAcreditNote, EmailAnEstimate, EmailAnInvoice, EmailAPurchaseOrder, EmailARetainerInvoice, EmailASalesOrder, EmailMultipleEstimates, EmailMultipleInvoices, ExportReport, ImportCreditCardStatement, InvoiceBulkReminder, InvoiceCancelWriteOFFInvoice,InvoiceDeleteExpenseReceipt, InvoiceEnableOrDisablePaymentReminder, InvoiceWriteOFFInvoice, MaqrkCustomerContactAsPrimary, MarkJournalAsPublished, ModifyBankAccountStatus, ModifyBillStatus, ModifyChartOfAccountStatus, ModifyContactStatus, ModifyCreditNoteStatus, ModifyEstimateStatus, ModifyInvoiceStatus, ModifyItemStatus, ModifyProjectStatus, ModifyPurchaseOrderStatus, ModifyRecurringBillStatus, ModifyRecurringExpenseStatus, ModifyRecurringInvoiceStatus, ModifyRetainerInvoiceStatus, ModifySalesorderStatus, ModifyUserStatus, ModifyVendorCreditStatus, ProjectsInviteAUser, SubmitEntityForApproval, TransactionsUncategorizeACategorizedTransaction, TransactionsUnmatchATransaction, UsersInviteAUser StoredProcedures.
2023-03-2722.0.8486Zoho BooksAdded
  • Added Documents view.
2023-03-2422.0.8483Zoho BooksAdded
  • Added BillDocuments, ContactDocuments, CreditNoteDocuments, InvoiceDocuments, PurchaseOrderDocuments, RetainerInvoiceDocuments, SalesorderDocuments views.
2023-03-2222.0.8481Zoho BooksAdded
  • Added AccountDetailsBaseCurrencyAdjustmentAccounts, AccountDetailsBaseCurrencyAdjustment, BankAccountLastImportedStatement, BankAccountLastImportedStatementTransactions, BankTransactionImportedTransaction, BillPurchaseOrders, BillVendorCredits, ContactRefunds, CustomerPaymentInvoices, GetContactStatementEmailContent, ItemWarehouses, VendorPaymentBills views.
2023-03-1322.0.8472Zoho BooksAdded
  • Added CustomerPaymentsRefund, RecurringBillDetails, TaxGroups, VendorCreditRefund, VendorPaymentsRefund tables.
  • Added RecurringBills, RecurringBillLineItems, Budgets views.
2023-03-1022.0.8469Zoho BooksAdded
  • Added support for accounttransactionsreport, businessperformanceratiosreport, cashflowreport, committedstockdetailsreport, CustomerBalancesReport, GeneralLedgerReport, VendorBalancesReport, StockSummaryReport, SalesBySalespersonReport, SalesByItemReport, SalesByCustomerReport, PurchaseOrdersByVendorReport, ProjectPerformanceSummaryReport, ProductSalesReport, PaymentReceivedReport, MovementOfEquityReport, JournalReport, InventoryValuationReport, InventorySummaryReport
2023-02-0322.0.8434Zoho BooksAdded
  • Added support for Insert, Update and Delete.
  • Added AccountNumber, IsPrimaryAccount, IsPaypalAccount, PaypalType, PaypalEmailAddress, RoutingNumber columns in BankAccounts.
  • Added Criterion as aggregate columns, TargetAccountId, AccountId, ProductType, VatTreatment columns in BankRules.
  • Added CustomFields, Documents, FromAccountTags, ToAccountTags as aggregate columns and FromAccountId, UserId, Date, TransactionType as columns in BankTransactions.
  • Added AccountIds column in BaseCurrencyAdjustments.
  • Added Approvers, CustomFields, Documents, LineItems, Taxes as aggregate column and IsUpdateCustomer, PurchaseOrderIds, PricebookId, PlaceOfSupply, PermitNumber as columns in BillDetails.
  • Added CurrencyId, IncludeInVatReturn, ShowOnDashboard as columns in ChartOfAccounts.
  • Added ContactType, ContactPersons, CustomFields, CreditLimit, CurrencyId, Facebook, IsAddedInPortal columns in ContactDetails.
  • Added AvataxUseCode, AvataxTaxCode, AvataxExemptNo, ContactPersons, CustomFields, IsDraft, LineItems, IgnoreAutoNumberGeneration columns in CreditNoteDetails.
  • Added EnablePortal column in CustomerContacts.
  • Added AmountApplied, CustomFields, ContactPersons, InvoiceId, Invoices columns in CustomerPaymentDetails.
  • Added AvataxUseCode, AvataxExemptNo, ContactPersons, CustomFields columns in EstimateDetailsInternal.
  • Added AcquisitionVatId, CanReclaimVatOnMileage, CustomFields, DestinationOfSupply, Distance, EngineCapacityRange, HSNORSAC, FuelType, GstNo, LineItems, ProductType, PlaceOfSupply, ReverseChargeVatId, ReverseChargeTaxId, SourceOfSupply, VehicleType, VatTreatment, TaxTreatment, Receipt columns in ExpenseDetails.
  • Added ContactPersons, CustomFields, ExpenseId, InvoicedEstimateId, LineItems, SalesorderItemId, TaxId, Send columns in InvoiceDetails
  • Added AvataxUseCode, AvataxTaxCode, HSNORSAC, InventoryAccountId, VendorId, ReorderLevel, InitialStock, InitialStockRate, ItemTaxPreferences columns in itemdetails.
  • Added ExchangeRate, IncludeInVatReturn, IsBasAdjustment, ProductType, VatTreatment, LineItems, TaxExemptionCode, TaxExemptionType columns in Journals.
  • Added Accounts in OpeningBalances.
  • Added CostBudgetAmount, BudgetAmount, BudgetHours, UserId, Tasks, Users columns in Projects
  • Added BillingAddressId, ContactPersons, CustomFields, Documents, DueDate, IsUpdateCustomer, PricebookId, SalesorderId, GstTreatment, VatTreatment, TaxTreatment, GstNo, SourceOfSupply, PlaceOfSupply, DestinationOfSupply, LineItems columns in PurchaseOrderDetails.
  • Added GstNo, SourceOfSupply, DestinationOfSupply, PlaceOfSupply, LineItems, VatTreatment, TaxTreatment, ProductType, AcquisitionVatId, ReverseChargeVatId columns in RecurringExpenseDetails
  • Added AvataxUseCode, AvataxTaxCode, AvataxExemptNo, ContactPersons, Email, ItemId, LineItems, PlaceOfSupply, TaxId, PaymentOptionsPaymentGateways, VatTreatment, GstNo, GstTreatment, TaxTreatment columns in recurringinvoicedetails.
  • Added ContactPersons, PaymentOptionPaymentGateways, LineItems as columns in retainerinvoicedetails.
  • Added AvataxUseCode, AvataxExemptNo, BillingAddressId, ShippingAddressId, ContactPersons, CustomFields, GstNo, GstTreatment, IsUpdateCustomer, LineItems, MerchantId, NotesDefault, PriceBookId, PlaceOfSupply, TaxId, TermsDefault, VatTreatment, TaxTreatment, CanSendInMail, TotalFiles, Doc as columns in SalesOrderDetails.
  • Added BudgetHours column in Tasks.
  • Added TaxType, IsValueAdded, PurchaseTaxExpenseAccountId, UpdateRecurringInvoice, UpdateRecurringExpense, UpdateDraftInvoice, UpdateRecurringBills, UpdateDraftSo, UpdateSubscription, UpdateProject column in Taxes.
  • Added CostRate, TimerStartedAt column in TimeEntries.
  • Added CostRate column in Users.
  • Added CustomFields, Documents, DestinationOfSupply, IsUpdateCustomer, PricebookId, PlaceOfSupply, LineItems columns in VendorCreditDetails.
  • Added Bills, CustomFields columns in VendorPaymentDetails.
2022-12-1422.0.8383GeneralChanged
  • Added the Default column to the sys_procedureparameters table.
2022-11-0922.0.8348Zoho BooksAdded
  • Added BalanceSheetsReport, ProfitsAndLossesReport, ReportsAccountTransactionsDetails, TaxSummaryReport, TrialBalanceReport.
2022-09-3022.0.8308GeneralChanged
  • Added the IsPath column to the sys_procedureparameters table.
2022-09-2022.0.8298Zoho BooksAdded
  • Added the FileStream parameter to support output streamd on the DownloadAttachment, DownloadExpenseReceipt and DownloadRetainerInvoiceAttachment stored procedures.
  • Added the FileData output parameter and Encoding input parameter to print the response on the DownloadAttachment, DownloadExpenseReceipt and DownloadRetainerInvoiceAttachment stored procedures.
2022-09-1622.0.8294Zoho BooksChanged
  • Changed DataType of Column CreditAmount of table ChartOfAccountTransactions from Integer to Decimal.
2022-06-0822.0.8194ADO.NETRemoved
  • Removed support for VS2010.
2022-05-1922.0.8174ADO.NETRemoved
  • Removed support for .NET 2.0.
2022-04-2722.0.8152ADO.NETRemoved
  • Removed support for EFCore 3.0 and EFCore5.0.
2022-02-0121.0.8067Zoho BooksAdded
  • Added column DebitAmount to table ChartOfAccountTransactions.
2021-09-0221.0.7915GeneralAdded
  • Added support for the STRING_SPLIT table-valued function in the CROSS APPLY clause.
2021-08-0721.0.7889GeneralChanged
  • Added the KeySeq column to the sys_foreignkeys table.
2021-08-0621.0.7888GeneralChanged
  • Added the new sys_primarykeys system table.
2021-07-2321.0.7874GeneralChanged
  • Updated the Literal Function Names for relative date/datetime functions. Previously, relative date/datetime functions resolved to a different value when used in the projection as opposed to the predicate. For example: SELECT LAST_MONTH() AS lm, Col FROM Table WHERE Col > LAST_MONTH(). Formerly, the two LAST_MONTH() methods would resolve to different datetimes. Now, they will match.
  • As a replacement for the previous behavior, the relative date/datetime functions in the criteria may have an 'L' appended to them. For example: WHERE col > L_LAST_MONTH(). This will continue to resolve to the same values that were previously calculated in the criteria. Note that the "L_" prefix will only work in the predicate - it not available for the projection.
2021-07-1221.0.7863Zoho BooksAdded
  • Added the connection property RowScanDepth. It is the maximum number of rows to scan for the custom fields columns available in the table. The default value is 200.
2021-06-0721.0.7828ADO.NETAdded
  • Added support for the DbCommand.CommandTimeout property.
2021-05-2921.0.7819ADO.NETRemoved
  • Removed support for SSRS 2008.
2021-04-2521.0.7785GeneralAdded
  • Added support for handling client side formulas during insert / update. For example: UPDATE Table SET Col1 = CONCAT(Col1, " - ", Col2) WHERE Col2 LIKE 'A%'
2021-04-2321.0.7783GeneralChanged
  • Updated how display sizes are determined for varchar primary key and foreign key columns so they will match the reported length of the column.
2021-04-1621.0.7776ADO.NETChanged
  • Separated the ADO.NET Provider assembly and Entity Framework Core 5 Nuget packages.
  • Single precision floating point numbers are now reported as with the Data Type Name as "real". Double precision floating point numbers now have their Data Type Name reported as "float". This change does not impact the actual data types of these columns - only the reported data type name.
  • Separate EFCore 3.0, 3.1 and EFCore 5 dlls are now shipped with the driver. The 2.0 and 2.1 EFCore dlls are removed.
2021-04-1621.0.7776GeneralAdded
  • Non-conditional updates between two columns is now available to all drivers. For example: UPDATE Table SET Col1=Col2
2021-04-1621.0.7776GeneralChanged
  • Reduced the length to 255 for varchar primary key and foreign key columns.
2021-04-1621.0.7776GeneralChanged
  • Updated implicit and metadata caching to improve performance and support for multiple connections. Old metadata caches are not compatible - you need to generate new metadata caches if you are currently using CacheMetadata.
2021-04-1621.0.7776GeneralChanged
  • Updated index naming convention to avoid duplicates.

Copyright (c) 2026 CData Software, Inc. - All rights reserved.
Build 26.0.9655