Bug fixes for emptynull type in ArrayIO, Form\Generate interval

Form\Generate for intervals also allows day(s), month(s), year(s), call
case insensitive

ArrayIO fix for missing escale literal for
date/datetime/interval/emptynull text type
This commit is contained in:
Clemens Schwaighofer
2022-06-22 16:17:16 +09:00
parent 4600f8f7bf
commit a754d897cf
2 changed files with 7 additions and 2 deletions

View File

@@ -471,7 +471,7 @@ class ArrayIO extends \CoreLibs\DB\IO
) {
$_value = 'NULL';
} elseif (isset($this->table_array[$column]['value'])) {
$_value = $this->table_array[$column]['value'];
$_value = $this->dbEscapeLiteral($this->table_array[$column]['value']);
} else {
// fallback
$_value = 'NULL';