Re: Failed Query
Re: Failed Query
- Subject: Re: Failed Query
- From: Gino Pacitti via Webobjects-dev <email@hidden>
- Date: Tue, 14 Jan 2020 12:34:19 +0000
Thanks I will give it a go…
Funny thing is that the ‘old’ code works and then just on occasion does not…
> On 14 Jan 2020, at 12:25, GILQUIN Pierre via Webobjects-dev
> <email@hidden> wrote:
>
> Hi,
>
> I Dont know if your old style qualifier is correct, so you may try something
> like this with the corresponding ERXKey :
> myQual = Transaction.PAYMENTINTENTID.eq(paymentIntentID) ;
>
> De : Webobjects-dev
> [mailto:webobjects-dev-bounces+pierre.gilquin=email@hidden] De la
> part de Gino Pacitti via Webobjects-dev
> Envoyé : mardi 14 janvier 2020 13:04
> À : WebObjects-Dev Mailing List List
> Objet : Failed Query
>
> Hi
> Anyone had experience of queries that should return an object as the row
> exists but EOF throws a NoSuchElementException?
>
> This is some code:
>
>
> Transaction transactionEo =
> QueryDatabase.TransactionForPaymentIntentIdQuery(customCharge.getPayment_intent(),
> _ec);
>
>
> public static synchronized Transaction
> TransactionForPaymentIntentIdQuery(String paymentIntentID, EOEditingContext
> _ec) throws NoSuchElementException {
>
>
> NSArray<String> args = new NSArray<String>(new String[]{
> paymentIntentID });
> EOQualifier myQual =
> EOQualifier.qualifierWithQualifierFormat("purchaseIntentId = %@", args);
>
> log.info("Qualifier " + myQual);
>
>
> return Transaction.fetchRequiredTransaction(_ec, myQual);
>
> }
>
> _______________________________________________
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list (email@hidden
> <mailto:email@hidden>)
> Help/Unsubscribe/Update your Subscription:
>
> This email sent to email@hidden <mailto:email@hidden>
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden
References: | |
| >Failed Query (From: Gino Pacitti via Webobjects-dev <email@hidden>) |
| >RE: Failed Query (From: GILQUIN Pierre via Webobjects-dev <email@hidden>) |