Project

General

Profile

Actions

Bug #91731

open

Cannot empty a date field in TCEforms if MySQL is in strict mode

Added by Oliver Klee almost 4 years ago. Updated almost 2 years ago.

Status:
Needs Feedback
Priority:
Should have
Assignee:
-
Category:
DataHandler aka TCEmain
Target version:
-
Start date:
2020-06-30
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
9
PHP Version:
7.2
Tags:
Complexity:
Is Regression:
Sprint Focus:

Description

Steps to reproduce:

1. Have MySQL in strict mode (i.e., the default configuration without any changes): STRICT_TRANS_TABLES,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION (this is MariaDB's default)
1. Have an extension with a date or datetime field that uses the config 'eval' => 'date' or 'eval' => 'datetime'
1. Fill in a date and save.
1. Empty the date (by using the "clear" icon) and save again.

Expected result:
The date field is emptied, and there is no error message.

Actual result:
The date field still has the date value (that should have been removed), and an error flash message is displayed:

SQL error: 'Incorrect integer value: " for column `…'

Additional information:

Bug report in the seminars extension:
https://github.com/oliverklee/ext-seminars/issues/548

Workaround in the seminars extension:
Add an int eval: https://github.com/oliverklee/ext-seminars/pull/549/files

So empty date and datetime fields need to be cast to an integer before saving so that an empty value gets converted to 0.


Related issues 1 (1 open0 closed)

Related to TYPO3 Core - Bug #95513: SQL error: 'Incorrect integer value: '' for column 'grade' at row 1'New2021-10-07

Actions
Actions #1

Updated by Xavier Perseguers over 2 years ago

  • Related to Bug #95513: SQL error: 'Incorrect integer value: '' for column 'grade' at row 1' added
Actions #2

Updated by Georg Ringer almost 2 years ago

  • Status changed from New to Needs Feedback

IMO this is fixed by using additional eval:int and with latest version a config like

'config' => [
                'type' => 'datetime',
                'default' => 0,
            ],

can you confirm?

Actions #3

Updated by Oliver Klee almost 2 years ago

With this configuration in the TCA, the problem still is there in V11 and V10:


'config' => [
'type' => 'input',
'renderType' => 'inputDateTime',
'eval' => 'datetime'
]

I consider adding the int eval or the 0 default as a workaround, not as a fix to the problem. IMHO the core should do the correct casts by default for date/datetime fields.

Actions

Also available in: Atom PDF