-
-
Notifications
You must be signed in to change notification settings - Fork 23
Open
Labels
enhancementNew feature or requestNew feature or request
Milestone
Description
instead of
SELECT `adp`.*, `ada`.`spracheid`
FROM `adp`
INNER JOIN `ada` ON ada.adaid = adp.adaid
WHERE (adpid = NULL)
LIMIT 1
we should simulate
SELECT `adp`.*, `ada`.`spracheid`
FROM `adp`
INNER JOIN `ada` ON ada.adaid = adp.adaid
WHERE adpid IS NULL
LIMIT 1
for code like
$query = '
SELECT `adp`.*, `ada`.`spracheid`
FROM `adp`
INNER JOIN `ada` ON ada.adaid = adp.adaid
WHERE (adpid = ?)
LIMIT 1';
$adpMapper = new Application_Model_Mapper_Adp();
$adpModel = $adpMapper->fetchRowByStatement(new ClxProductNet_DbStatement($query, [$adpid]));
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request