1.11 ms (20.06%)
|
1 |
SELECT t0.id AS id_1, t0.code AS code_2, t0.provider AS provider_3, t0.external_order_id AS external_order_id_4, t0.pay_token AS pay_token_5, t0.notif_token AS notif_token_6, t0.payment_url AS payment_url_7, t0.transaction_id AS transaction_id_8, t0.is_success AS is_success_9, t0.notified_at AS notified_at_10, t0.notify_content AS notify_content_11, t0.has_error AS has_error_12, t0.error_text AS error_text_13, t0.payload AS payload_14, t0.created_at AS created_at_15, t0.updated_at AS updated_at_16, t0.transfert_id AS transfert_id_17 FROM payment_attempt t0 WHERE t0.code = ? LIMIT 1
Parameters: [
"PMN6AA03E79492E720260908165729"
]
SELECT t0.id AS id_1, t0.code AS code_2, t0.provider AS provider_3, t0.external_order_id AS external_order_id_4, t0.pay_token AS pay_token_5, t0.notif_token AS notif_token_6, t0.payment_url AS payment_url_7, t0.transaction_id AS transaction_id_8, t0.is_success AS is_success_9, t0.notified_at AS notified_at_10, t0.notify_content AS notify_content_11, t0.has_error AS has_error_12, t0.error_text AS error_text_13, t0.payload AS payload_14, t0.created_at AS created_at_15, t0.updated_at AS updated_at_16, t0.transfert_id AS transfert_id_17 FROM payment_attempt t0 WHERE t0.code = 'PMN6AA03E79492E720260908165729' LIMIT 1;
|
1.01 ms (18.14%)
|
1 |
SELECT t0.id AS id_1, t0.code AS code_2, t0.reference AS reference_3, t0.montant AS montant_4, t0.frais AS frais_5, t0.destinataire_phone AS destinataire_phone_6, t0.note AS note_7, t0.status AS status_8, t0.paid_at AS paid_at_9, t0.sent_at AS sent_at_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.emetteur_id AS emetteur_id_13 FROM transfert t0 WHERE t0.id = ?
SELECT t0.id AS id_1, t0.code AS code_2, t0.reference AS reference_3, t0.montant AS montant_4, t0.frais AS frais_5, t0.destinataire_phone AS destinataire_phone_6, t0.note AS note_7, t0.status AS status_8, t0.paid_at AS paid_at_9, t0.sent_at AS sent_at_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.emetteur_id AS emetteur_id_13 FROM transfert t0 WHERE t0.id = 9;
|
0.78 ms (14.12%)
|
1 |
UPDATE payment_attempt SET notified_at = ?, notify_content = ?, has_error = ?, error_text = ?, updated_at = ? WHERE id = ?
Parameters: [
"2026-09-08 17:09:04"
"{"status":"FAILED","notif_token":"1wabdkhmejrntdn8ttraesqb5hnivjpy","txnid":""}"
1
"Paiement échoué via Orange Money"
"2026-09-08 17:09:04"
9
]
UPDATE payment_attempt SET notified_at = '2026-09-08 17:09:04', notify_content = '{\"status\":\"FAILED\",\"notif_token\":\"1wabdkhmejrntdn8ttraesqb5hnivjpy\",\"txnid\":\"\"}', has_error = 1, error_text = 'Paiement échoué via Orange Money', updated_at = '2026-09-08 17:09:04' WHERE id = 9;
|