Project

General

Profile

Actions

Bug #78386

closed

Error in between Query.

Added by Anonymous over 7 years ago. Updated about 7 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Database API (Doctrine DBAL)
Target version:
-
Start date:
2016-10-24
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
8
PHP Version:
7.0
Tags:
Complexity:
Is Regression:
No
Sprint Focus:

Description

//With this query I get never results.

$constraints[] = $query->logicalAnd(
$query->greaterThanOrEqual('events.dateFrom', $DateFromStartFormated),
$query->lessThanOrEqual('events.dateTo', $DateToStartFormated)
);

//With this query I get results.

$constraints[] = $query->logicalAnd(
$query->greaterThanOrEqual('events.dateFrom', $DateFromStartFormated)//,
//$query->lessThanOrEqual('events.dateTo', $DateToStartFormated)
);

Actions

Also available in: Atom PDF