RE: Shortest date format

2002-10-16 Thread Eric . Lewis
By hand means that I use the pattern. Actually, I meant creating the pattern by hand in JSTL. Which would be kind of stupid, since I can't know what language will be used... So if I could load the pattern from the locale, how would this work? Regards, Eric I'm not sure what you mean by by

Shortest date format

2002-10-15 Thread Eric . Lewis
Hi Is there any chance that JSTL could get a date format that's even shorter than short? I mean that I need the date just to be the day and the month. And frankly, I don't think I should code this by hand (the English having mm/dd, most others having dd/mm) when fmt:... usually gives me all I

RE: Shortest date format

2002-10-15 Thread Jon Archer
And frankly, I don't think I should code this by hand (the English having mm/dd, most others having dd/mm) when fmt:... usually gives me all I need Eric, (and I apologise in advance that this is no help whatsover) I thought you ought to know that the English (and the British too ;-) use

RE: Shortest date format

2002-10-15 Thread Felipe Schnack
mm/dd have no logic not to mention the metric system stuff :-))) On Tue, 2002-10-15 at 13:40, Jon Archer wrote: And frankly, I don't think I should code this by hand (the English having mm/dd, most others having dd/mm) when fmt:... usually gives me all I need Eric, (and I apologise

date format

2002-04-03 Thread Andrea Grittini
Hello, Which is the input format in the dateFormat tag of JSTL.?? I'm trying to format a date in long format like MONDAY 10 JULY 2001 using the fmt tag library. I read the date field from a SQLserver DB, and I always got an Invalid date. (The same if I use the datetime tag library)

JSTL Date Format Question

2002-04-01 Thread Zvolensky, Thomas J {PDBI~Nutley}
/tr /c:if c:set var=oldname value=${row.lastname}/c:set /c:forEach Is a conversion from datetime/date format to text required before the c:out value=${row.Date}/ tag? If I run the same query and list the records using th DBTAGS library, the date comes out correct. TIA

Re: JSTL Date Format Question

2002-04-01 Thread Shawn Bayern
c:set var=oldname value=${row.lastname}/c:set /c:forEach Is a conversion from datetime/date format to text required before the c:out value=${row.Date}/ tag? If I run the same query and list the records using th DBTAGS library, the date comes out correct. TIA -- To unsubscribe, e-mail

RE: JSTL Date Format Question

2002-04-01 Thread Zvolensky, Thomas J {PDBI~Nutley}
PROTECTED]] Sent: Monday, April 01, 2002 12:09 PM To: Tag Libraries Users List Subject: Re: JSTL Date Format Question A variable that prints a string starting with [B is likely a primitive byte array (byte[]). This means that the MYSQL JDBC driver you're using is probably returning a byte

RE: JSTL Date Format Question

2002-04-01 Thread Shawn Bayern
://prdownloads.sourceforge.net/mmmysql/mm.mysql-2.0.11-you-must-unjar-me .jar Regards. -Original Message- From: Shawn Bayern [mailto:[EMAIL PROTECTED]] Sent: Monday, April 01, 2002 12:09 PM To: Tag Libraries Users List Subject: Re: JSTL Date Format Question A variable that prints

RE: JSTL Date Format Question

2002-04-01 Thread Henri Yandell
On Mon, 1 Apr 2002, Shawn Bayern wrote: Okay, I looked at the JDBC driver's code. It returns a byte[] in cases where the underlying object is java.sql.Types.LONGVARBINARY. For some reason, then, it looks like MySQL is returning a LONGVARBINARY column for the one you're labeling Date.

RE: JSTL Date Format Question

2002-04-01 Thread Shawn Bayern
On Mon, 1 Apr 2002, Henri Yandell wrote: Okay, I looked at the JDBC driver's code. It returns a byte[] in cases where the underlying object is java.sql.Types.LONGVARBINARY. For some reason, then, it looks like MySQL is returning a LONGVARBINARY column for the one you're labeling Date.

RE: JSTL Date Format Question

2002-04-01 Thread Zvolensky, Thomas J {PDBI~Nutley}
under ORACLE? If so, I'll move on to other things. -Original Message- From: Shawn Bayern [mailto:[EMAIL PROTECTED]] Sent: Monday, April 01, 2002 2:02 PM To: Tag Libraries Users List Subject: RE: JSTL Date Format Question Okay, I looked at the JDBC driver's code. It returns a byte