Re: NSDates, NSTimestamps and the Java-bridge
Re: NSDates, NSTimestamps and the Java-bridge
- Subject: Re: NSDates, NSTimestamps and the Java-bridge
- From: Art Isbell <email@hidden>
- Date: Wed, 14 May 2003 08:36:04 -1000
On Wednesday, May 14, 2003, at 07:01 AM, Ricardo Strausz wrote:
Have you tried forgetting about NSTimestamp and using NSCalendarDate
instead from the ObjC side? EOModeler, an ObjC app, seems to equate
NSCalendarDate for an ObjC value class with NSTimestamp for a Java
value class.
I did, but still with out results...
I did try things as:
id eoq = [EOQualifier qualifierWithQualifierFormat:@"cliente=%@
and fecha>=%@ and estado>0",[eo folio],desde,nil:nil];
id eoq = [EOQualifier qualifierWithQualifierFormat:@"cliente=%@
and fecha>=%@ and estado>0",[eo folio],desde:nil];
id eoq = [EOQualifier qualifierWithQualifierFormat:@"cliente=%@
and fecha>=%@ and estado>0":[eo folio],desde,nil];
If I recall my ObjC, the correct form should be
id eoq = [EOQualifier qualifierWithQualifierFormat:@"cliente=%@ and
fecha>=%@ and estado>0",[eo folio],desde];
The argument list of qualifierWithQualifierFormat: includes the format
string followed by n arguments, where n is the number of '%'-prefixed
format characters in the format string.
Aloha,
Art
_______________________________________________
webobjects-dev mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/webobjects-dev
Do not post admin requests to the list. They will be ignored.