TDV Adapter for SAS Data Sets

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-2126.0.9637SASDataSetsConnectionChanged
  • When the ConnectionType connection property is set to "SharePointSOAP", the driver only supports SharePointEdition=SharePointOnPremise. Setting the SharePointEdition connection property to "SharePointOnline" is not supported for this connection type. Use ConnectionType=SharePointGRAPH or ConnectionType=SharePointRESTv1 to connect to SharePoint Online.
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-2926.0.9615SASDataSetsConnectionAdded
  • Added support for authentication via EKSPodIdentity. For descriptions of the related connection properties (AWSContainerCredentialsFullURI and AWSContainerAuthorizationTokenFile), see the AWS Authentication Properties section of the Connection String Options chapter.
2026-04-2326.0.9609SASDataSetsConnectionAdded
  • Added the "SharePoint REST V1" connection type to the ConnectionType connection property. This connection type uses the SharePoint REST V1 API and supports both on-premise and cloud SharePoint instances. The URI prefix for this connection type is "sprestv1://".
2026-04-2326.0.9609SASDataSetsConnectionChanged
  • Renamed the "SharePoint REST" connection type to "SharePoint GRAPH" in the ConnectionType connection property and updated its URI prefix from "sprest://" to "spgraph://".
2026-04-1526.0.9601GeneralQuery ExecChanged
  • String comparisons using GREATER, LESS, and CONTAINS operators are now case-insensitive by default.
2026-04-0126.0.9587SASDataSetsConnectionRemoved
  • The TestConnectionBehavior connection property's LIST_AND_READ_FILES option has been replaced by a new option, LIST_OR_READ_FILES. Use LIST_OR_READ_FILES instead.
  • The HMAC AuthScheme has been removed. This change affects Oracle Cloud Storage, Wasabi, and IBM Object Storage connections. Use IAMSecretKey instead.
2026-02-1125.0.9538SASDataSetsConnectionChanged
  • Added a new option, AUTHENTICATE, to the TestConnectionBehavior connection property. When Authenticate is specified, the driver makes a simple API call to check if the provided credentials are valid.
  • Fixed some incorrect behaviors for all options of the TestConnectionBehavior connection property.
  • Improved error handling, normalized errors, and added error codes to differentiate different storage errors.
2026-02-0925.0.9536SASDataSetsAdded
  • Added the new option LIST_OR_READ_FILES to the TestConnectionBehavior connection property.
2026-02-0925.0.9536SASDataSetsDeprecated
  • Marked the LIST_AND_READ_FILES option in the TestConnectionBehavior connection property for deprecation.
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-09-0125.0.9375SASDataSetsAdded
  • Added support for CREATE TABLE ... AS SELECT ... syntax. For example: CREATE TABLE TestingTable2 AS SELECT * FROM TestingTable
2025-08-2825.0.9371SASDataSetsAdded
  • Added support for INSERT INTO ... SELECT syntax. For example: INSERT INTO TestingTable2 (ID, Name) SELECT ID, Name FROM TestingTable
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-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-06-1225.0.9294SASDataSetsAdded
  • Added the following stored procedures: UploadFile, DownloadFile, and DeleteFile. These stored procedures accept only file paths that are relative to the connection URI. Note that UploadFile and DownloadFile are not available for ConnectionType=Local.
2025-06-0925.0.9291SASDataSetsRemoved
  • Removed the ProjectId property for the Google Cloud Storage ConnectionType.
2025-05-2725.0.9278GeneralRemoved
  • Removed the "Proprietary" enum option from ProxyAuthscheme.
2025-05-1525.0.9266SASDataSetsAdded
  • Added support for reading .7z (7-Zip) archive files.
2025-04-1425.0.9235SASDataSetsAdded
  • Added ability to set a specific .sas7bdat file to the URI. Only that specific file is loaded when listing tables.
2025-04-0725.0.9228SASDataSetsAdded
  • Added support for the IAMSecretKey AuthScheme for cloud storage connections that use access and secret key credentials. This naming better reflects the underlying authentication method and aligns with terminology used by cloud storage providers.
2025-04-0725.0.9228SASDataSetsDeprecated
  • Deprecated the HMAC AuthScheme. While it remains supported for backward compatibility, it is no longer recommended due to naming ambiguity.
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-11-2724.0.9097GeneralAdded
  • Added ThreadId to LogModule output. Logfile lines now include the Thread ID associated with the action being performed.
2024-08-2324.0.9001SASDataSetsAdded
  • Added OAuthPKCE as an authentication option when ConnectionType is set to Google Cloud Storage and Google Drive.
  • Added OAuthClient as an authentication option when ConnectionType is set to Box.
2024-08-2024.0.8998SASDataSetsAdded
  • Added support for the following AWS regions: HYDERABAD, MELBOURNE, CALGARY, SPAIN, ISOLATEDUSEAST, ISOLATEDUSEASTB, and ISOLATEDUSWEST.
2024-06-2824.0.8945SASDataSetsRemoved
  • Removed the value "Auto" from the ConnectionType connection property. The default value is now "Local".
2024-06-1824.0.8935GeneralAdded
  • Added support for the "TELAVIV" region (Israel) in the AWSRegion connection property.
2024-05-0924.0.8895GeneralChanged
  • The ROUND function previously did not accept negative precision values. That feature has now been restored.
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-02-0423.0.8800SASDataSetsAdded
  • Added support for the attributes "format", "informat" and "label" in the CREATE TABLE statement
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-0923.0.8713cisChanged
  • Salesforce with SSO Adapter reports the Double type as Doule type instead of Decimal type
  • Salesforce with SSO Adapter supports create a table with Clob type column. The Clob type is mapped to Salesforce LongTextArea field.
2023-06-2023.0.8571GeneralAdded
  • Added the new sys_lastresultinfo system table.
2023-04-2523.0.8515GeneralRemoved
  • Removed support for the SELECT INTO CSV statement. The core code doesn't support it anymore.
2022-12-1422.0.8383GeneralChanged
  • Added the Default column to the sys_procedureparameters table.
2022-09-3022.0.8308GeneralChanged
  • Added the IsPath column to the sys_procedureparameters table.
2022-08-3022.0.8277SASDataSetsAdded
  • Added support for uploading server-side encrypted objects for Amazon S3 storage source via ServerSideEncryption connection property.
2022-08-2322.0.8270SASDataSetsAdded
  • Added support for reading SAS Data Sets files from cloud sources.
2022-05-2422.0.8179SASDataSetsChanged
  • Changed provider name to SAS Data Sets.
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-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.7776GeneralChanged
  • Reduced the length to 255 for varchar primary key and foreign key columns.
2021-04-1621.0.7776GeneralChanged
  • Updated index naming convention to avoid duplicates.
2021-04-1521.0.7775GeneralChanged
  • Kerberos authentication is updated to use TCP by default, but will fall back to UDP if a TCP connection cannot be established.

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