| |
| Date | Build Number | Change Type | Description |
| 10/06/2025 | 9410 | General | Added
- Support for parsing datetime formats using ".S" and ",S" for milliseconds and nanoseconds.
|
| 10/01/2025 | 9405 | JDBC | Added
- Added the following methods to the cdata.jdbc.csv.CSVDriver class. If you pass these methods 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 if 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. Includes the messages, codes, properties, and error location for each record.
|
| 09/12/2025 | 9386 | General | Added
- Added the IsInsertable, IsUpdateable, and IsDeleteable columns to the sys_tables table.
|
| 09/10/2025 | 9384 | General | Changed
- All columns in statically defined Views are now reported as read-only.
|
| 09/03/2025 | 9377 | General | Changed
- 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".
|
| 09/01/2025 | 9375 | General | Added
- Added support for using the CAST function with infinity values. This function can cast "inf" and "-inf" to DOUBLE, FLOAT, or REAL.
|
| 08/21/2025 | 9364 | General | Changed
- 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.
|
| 08/13/2025 | 9356 | General | Changed
- Changed the maximum number of pages held in memory from 15 to 5 for the page providers to decrease heap usage.
|
| 07/18/2025 | 9330 | CSV | Removed
- Removed the OAuthGrantType property. The grant type is now set implicitly through the 'AuthScheme' property. For example, you can use the 'OAuthPassword' AuthScheme instead of AuthScheme=OAuth with OAuthGrantType=Password.
|
| 06/25/2025 | 9307 | General | Removed
- Removed the "ADLS Gen 1" value from the ConnectionType property.
|
| 06/20/2025 | 9302 | General | Added
- 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.
|
| 06/18/2025 | 9300 | General | Changed
- The internal code for exception handling has been refactored. Exception messages returned during certain error conditions may now have different wording or formatting.
|
| 06/12/2025 | 9294 | CSV | Added
- 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.
|
| 06/09/2025 | 9291 | CSV | Removed
- Removed the ProjectId property for the Google Cloud Storage ConnectionType.
|
| 05/27/2025 | 9278 | General | Removed
- Removed the "Proprietary" enum option from ProxyAuthscheme.
|
| 05/15/2025 | 9266 | CSV | Added
- Added support for reading .7z (7-Zip) archive files.
|
| 04/17/2025 | 9238 | CSV | Added
- Added the TestConnectionBehavior connection property. This property allows changing the behavior of a test connection based on the integration scenario.
|
| 04/07/2025 | 9228 | CSV | Added
- 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.
Deprecated
- Deprecated the HMAC AuthScheme. While it remains supported for backward compatibility, it is no longer recommended due to naming ambiguity.
|
| 03/21/2025 | 9211 | CSV | Added
- The TrimSpaces connection property now accepts two new values: "Leading" and "Trailing". "Leading" only removes leading spaces while "Trailing" only removes trailing spaces.
- Added the TrimQuotedValues connection property. When this property is set to False, quoted values are exempt from the effects of the TrimSpaces connection property. If True, both quoted and unquoted values are affected by the TrimSpaces connection property.
|
| 03/13/2025 | 9203 | CSV | Changed
- The connection property, IgnoreIncompleteRows, has been updated to accept an enumeration of values instead of just a boolean (true/false).
- The available values are:
- FALSE: Include all rows, even if they are incomplete.
- TRUE: Ignore any row that is incomplete.
- EXTRA: Ignore rows that contain more cells than expected.
- MISSING: Ignore rows with fewer cells than expected.
|
| 02/15/2025 | 9177 | General | Added
- 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.
|
| 11/27/2024 | 9097 | General | Added
- Added ThreadId to LogModule output. Logfile lines now include the Thread ID associated with the action being performed.
|
| 10/15/2024 | 9054 | CSV | Replaced
- In the ListFiles stored procedure, replaced the AbsolutePath input with the Path input. This path is relative to the path provided in the URI connection property.
|
| 09/30/2024 | 9039 | CSV | Added
- Added the AbsolutePath input to the ListFiles stored procedure. By default, ListFiles lists all CSV files in the directory specified by the URI connection property. If an alternative directory is supplied in the AbsolutePath input, this procedure will instead list all CSV files in the supplied directory.
|
| 08/23/2024 | 9001 | CSV | Added
- 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.
|
| 08/20/2024 | 8998 | CSV | Added
- Added support for the following AWS regions: HYDERABAD, MELBOURNE, CALGARY, SPAIN, ISOLATEDUSEAST, ISOLATEDUSEASTB, and ISOLATEDUSWEST.
|
| 06/28/2024 | 8945 | CSV | Removed
- Removed the value "Auto" from the ConnectionType connection property. The default value is now "Local".
|
| 06/18/2024 | 8935 | General | Added
- Added support for the "TELAVIV" region (Israel) in the AWSRegion connection property.
|
| 05/09/2024 | 8895 | General | Changed
- The ROUND function previously did not accept negative precision values. That feature has now been restored.
|
| 03/15/2024 | 8840 | General | Added
- 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
|
| 11/29/2023 | 8733 | General | Changed
- The ROUND function doesn't accept the negative precision values anymore.
Changed
- 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.
|
| 11/28/2023 | 8732 | General | Added
- Added the HMACSHA256 formatter to allow for secrets to be decoded if it is in base64 format
|
| 10/27/2023 | 8700 | JDBC | Changed
- Added support for Connection.abort() method.
|
| 08/14/2023 | 8626 | CSV | Added
- Added AzureServicePrincipalCert as a separate AuthScheme to be used for Azure Service Principal authentication with a Certificate.
|
| 06/20/2023 | 8571 | General | Added
- Added the new sys_lastresultinfo system table.
|
| 04/27/2023 | 8517 | CSV | Added
- _ResourceURI will always be used as the column name for the column showing the path to the file when IncludeResourceColumns is set to true.
|
| 04/25/2023 | 8515 | General | Removed
- Removed support for the SELECT INTO CSV statement. The core code doesn't support it anymore.
|
| 01/04/2023 | 8404 | CSV | Added
- Added URI output to the ListFiles stored procedure.
|
| 12/14/2022 | 8383 | General | Changed
- Added the Default column to the sys_procedureparameters table.
|
| 11/30/2022 | 8369 | CSV | Added
- Added UseSimpleColumnNames, the property determines if simple names should be used for columns.
|
| 10/24/2022 | 8332 | CSV | Added
- Added support for specifying HEX string as row delimiter. Ex: RowDelimiter=0x01;
|
| 09/30/2022 | 8308 | General | Changed
- Added the IsPath column to the sys_procedureparameters table.
|
| 09/15/2022 | 8293 | CSV | Added
- Added support for .tar, .tar.gz and .zip archive files when AggregateFiles is set to false. The archive file will be treated as a folder and the CSV files inside the archive will be pushed as separate views based on the IncludeSubdirectories and DirectoryRetrievalDepth connection properties.
|
| 08/30/2022 | 8277 | CSV | Added
- Added support for uploading server-side encrypted objects for Amazon S3 storage source via ServerSideEncryption connection property.
|
| 08/02/2022 | 8249 | CSV | Added
- Added CreateBatchFolder connection property which will be used to determine if a folder should be created or not when InsertMode is set to FilePerBatch.
|
| 07/26/2022 | 8242 | CSV | Added
- Added the BatchNamingConvention connection property which will be used to determine the naming convention of batch files when InsertMode is set to FilePerBatch.
|
| 06/11/2022 | 8197 | JDBC | Changed
- The method GetJDBCMinorVersion() and GetJDBCMajorVersion() return 4.2 as the supported JDBC major / minor version.
|
| 05/27/2022 | 8182 | CSV | Added
- Added the ConnectionType connection property to determine the storage type of specified URI.
|
| 04/28/2022 | 8153 | JDBC | Changed
- Removed support for JRE 1.6. JRE 1.8 and above is now required.
|
| 03/10/2022 | 8104 | CSV | Added
- Added support for Apache HDFS (webhdfs://) as a storage source.
|
| 03/09/2022 | 8103 | CSV | Changed
- Changed the default method for submitting client_credentials grants with OAuth. Before, client_credentials would submit OAuthClientId and OAuthClientSecret using the HTTP Authorization header. Now the OAuthPasswordGrantType controls this setting and it defaults to OAuthPasswordGrantType=Post. The previous behavior is still available by setting OAuthPasswordGrantType=Basic.
|
| 03/02/2022 | 8096 | CSV | Added
- Added support for trimming spaces in fixed length CSV files using the TrimSpaces connection property.
|
| 02/25/2022 | 8091 | JDBC | Changed
- The method DatabaseMetaData.getTypeInfo() now returns all of the data types that the driver supports. Previously, it was returning only a portion of the data types. The types include: tinyint, smallint, int, bigint, float, double, numeric, decimal, bit, date, datetime, time, varchar, binary, uuid.
|
| 02/24/2022 | 8090 | JDBC | Changed
- Corrected the return value of method DatabaseMetaData.supportsOuterJoins(), which used to return an incorrect value.
|
| 01/13/2022 | 8048 | CSV | Added
- Added support for IBM Cloud Object Storage(ibmobjectstorage://) as a storage source.
|
| 12/15/2021 | 8019 | CSV | Added
- Added stored procedures supporting file operations for SFTP storage source: - DeleteFile - CopyFile - MoveFile
|
| 12/07/2021 | 8011 | CSV | Added
- Added the MaxCellLength connection property.
|
| 10/27/2021 | 7970 | JDBC | Changed
|
| 10/21/2021 | 7964 | CSV | Added
- Add support for CUD operations on the cloud sources:
- Azure Blob (azureblob://)
- Azure Data Lake Gen1 (adl://)
- Azure Data Lake Gen2 (abfss://)
- Dropbox (dropbox://)
- FTP (ftp://)
- Google Cloud Storage (gs://)
- S3 (s3://)
- SFTP (sftp://)
|
| 10/07/2021 | 7950 | CSV | Added
- Added support for excluding files based on the ExcludeFiles connection property.
- Added support for datetime filters in IncludeFiles and ExcludeFiles connection properties. We currently support CreatedDate and ModifiedDate. Ex:
ExcludeFiles="TXT,CreatedDate<='2020-11-26T07:39:34-05:00'"
ExcludeFiles="TXT,ModifiedDate<=DATETIMEFROMPARTS(2020, 11, 26, 7, 40, 50, 000)"
ExcludeFiles="ModifiedDate>=DATETIMEFROMPARTS(2020, 11, 26, 7, 40, 49, 000),ModifiedDate<=CURRENT_TIMESTAMP()" - Only the following storage sources will have support for filtering by CreatedDate:
- Box (box://)
- GCloudStorage (gs://)
- GoogleDriveStorageSource (gdrive://)
- OneDrive (onedrive://)
- SharePoint (sp://)
- SharePointREST (sprest://)
|
| 09/12/2021 | 7925 | JDBC | Removed
- Removed the IS_READONLY, IS_KEY, NUMERIC_PRECISION, and DECIMAL_DIGITS columns from DatabaseMetadata.GetColumns(), as they are not part of the JDBC Specification. This information is still available via other metadata calls.
|
| 09/02/2021 | 7915 | General | Added
- Added support for the STRING_SPLIT table-valued function in the CROSS APPLY clause.
|
| 08/07/2021 | 7889 | General | Changed
- Added the KeySeq column to the sys_foreignkeys table.
|
| 08/06/2021 | 7888 | General | Changed
- Added the new sys_primarykeys system table.
|
| 07/23/2021 | 7874 | General | Changed
- 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.
|
| 06/24/2021 | 7845 | CSV | Added
- Added support for the GOOGLEJSONBLOB JWT certificate type. This works like the existing GOOGLEJSON certificate type except that the certificate is provided as JSON text instead of as a file path.
|
| 06/10/2021 | 7831 | CSV | Added
- Added support for TypeDetectionScheme=ColumnCount. This enables the user to specify via the ColumnCount connection property exactly how many columns to report (all as varchar), bypassing any normal procedure of attempting to introspect the data to dynamically determine columns.
|
| 06/08/2021 | 7829 | CSV | Added
- Added support for the AzureServicePrinciple authentication scheme, which will support both using an OAuthClientSecret, or alternatively using a JWT cert.
|
| 06/05/2021 | 7826 | CSV | Added
- Added support to authenticate submitting JWT certs instead of the OAuthClientSecret for the AzureAD authentication scheme.
|
| 05/26/2021 | 7816 | CSV | Deprecated
- Deprecated UseTempFile connection property. Instead, specify the new property InsertMode.
|
| 05/18/2021 | 7808 | CSV | Added
- Added the "PathSeparator" connection property.
|
| 04/25/2021 | 7785 | General | Added
- Added support for handling client side formulas during insert / update. For example: UPDATE Table SET Col1 = CONCAT(Col1, " - ", Col2) WHERE Col2 LIKE 'A%'
|
| 04/23/2021 | 7783 | General | Changed
- Updated how display sizes are determined for varchar primary key and foreign key columns so they will match the reported length of the column.
|
| 04/23/2021 | 7783 | CSV | Deprecated
- SSODomain will not be used anymore for OKTA, OneLogin and ADFS. Instead, Domain should be specified.
- The AzureAccount connection property is deprecated. Instead, AzureStorageAccount should be used.
|
| 04/16/2021 | 7776 | General | Added
- Non-conditional updates between two columns is now available to all drivers. For example: UPDATE Table SET Col1=Col2
|
| 04/16/2021 | 7776 | General | Changed
- Reduced the length to 255 for varchar primary key and foreign key columns.
Changed
- Updated index naming convention to avoid duplicates.
|
| 04/16/2021 | 7776 | General | Changed
- 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.
|
| 04/15/2021 | 7775 | General | Changed
- Kerberos authentication is updated to use TCP by default, but will fall back to UDP if a TCP connection cannot be established.
|
| 03/01/2021 | 7730 | CSV | Added
- Added support for Culture and ClientCulture connection properties.
|
| 02/25/2021 | 7726 | CSV | Added
- Added support to handle empty column names.
|
| 02/20/2021 | 7721 | CSV | Added
- Added support for handling duplicate column names.
|
| 11/23/2020 | 7632 | CSV | Added
- Added support for specifying hex string delimiters. Ex: FMT=0x01;
|