ExportDataTable breaking changes

It appears a breaking change was introduced since 23.5, most likely by this change in 23.9:

CELLSNET-53962 Support data type detection when exporting data to DataTable

The problem with the change is that the column data types in the result DataTable are different than what they were prior to the change. We’ve been using Aspose for probably over 15 years, and all existing code that expects a certain column type is now seeing a different type. I have looked in vain for an option to revert the behavior back.

Attached is a zip file with test code. When the code is run with version 23.5 there are no errors. When run with version 24.1 there are errors.

There should be an option to keep this long-standing behavior as it was.

ExportDataTableTests.zip (14.1 KB)

@jcapson
Thanks for your details. We will evaluate your issue further and get back to you soon.

@jcapson

Sorry for the inconvenience caused by the changed logic. In previous versions, when the first data was empty, the column data type was set to string. However, some customers think that this was not reasonable because it is common for columns with a determined type to have some empty data. We believe this requirement is reasonable, so we have accordingly modified this part of the logic to ignore empty cells when determining the column data type.

To get the same behavior with old versions, we are afraid currently there is no simple way. Preprocessing the range that needs to be exported is a possible workaround. You may traverse cells in the range to detect data type for every column by yourself and define the DataTable before exporting, or you may traverse cells in the range to replace blank cells with empty string value(“”).

If you do need one simple api to get the same result with old versions, we may consider to provide new API(s) later, but currently we are afraid you have to manipulate it by youself, such as trying the workaround we mentioned.

Thank you for the reply.

It is both unfortunate and surprising that the decision was made to alter such long-standing non-bug behavior without a flag to either enable or reverse the new behavior. While I do agree that the new behavior is better, I disagree that your clients should be forced to accommodate the new behavior. We were upgrading from 23.5 to 24.1 to fix a critical bug that was affecting a couple clients, and now before we can deploy the fix we have to figure out how to prevent bugs from an unnecessary breaking change that should have been provided a flag to govern the behavior. For example, our clients put together import and input spreadsheets in 100s of different formats and now there is the likelihood that when read into data tables the data types will be different from expected. Our common code for converting the Excel sheet to a data table doesn’t know what types the myriad different calling code expects, and now the calling code is likely to get unexpected values.

I urgently reiterate my call for a flag to govern the new behavior.

@jcapson,

Thanks for your thoughts and providing further details.

We will check if we could consider a flag or relevant API to get your older results with newer versions. We will get back to you soon.

1 Like

@jcapson
We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.

Issue ID(s): CELLSNET-55029

You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.

@jcapson,

We are pleased to inform you that your issue has been resolved. The enhancement will be included in an upcoming release (Aspose.Cells v24.2) that we plan to release in the first half of February 2024. You will be notified when the next version is released. We have also added AllowDBNull Boolean attribute under ExportTableOptions to support your needs.

1 Like

The issues you have found earlier (filed as CELLSNET-55029) have been fixed in this update. This message was posted using Bugs notification tool by johnson.shi

1 Like

Thank you! I will download the latest and test ASAP.

@jcapson,

Sure, please take your time and try the latest version. Hopefully new version with new API(s) will work for your needs.

@jcapson
Please set options as the following :

var opts = new ExportTableOptions
            {
                CheckMixedValueType = true,
                ExportColumnName = true,
                AllowDBNull = false

            };