RE: Shortest date format

2002-10-16 Thread Martin Cooper
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, October 16, 2002 1:46 AM > To: [EMAIL PROTECTED] > Subject: RE: Shortest date format > > > "By hand" means that I use the pattern. Actually, I meant crea

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

RE: Shortest date format

2002-10-15 Thread Martin Cooper
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, October 15, 2002 8:25 AM > To: [EMAIL PROTECTED] > Subject: Shortest date format > > > Hi > > Is there any chance that JSTL could get a date format that's &g

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 usually gives me > > all I need > > Eric, (and I apologise

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 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 dd/mm, it'

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 usually

Re: date format

2002-04-03 Thread Shawn Bayern
On Wed, 3 Apr 2002, Andrea Grittini wrote: > Hello, > Which is the input format in the dateFormat tag of JSTL.?? By default, it's the "current" locale's representation of the date. The "current" locale is determined through a somewhat complex algorithm that's described well in the spec. > I'm

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) . So I th

RE: JSTL Date Format Question

2002-04-01 Thread Shawn Bayern
On Mon, 1 Apr 2002, Zvolensky, Thomas J {PDBI~Nutley} wrote: > This is unfortunate as I need to return one record per user per date in my > query, necessitating the DATE_FORMAT() function in my select. Oh, I was just thinking that you could use the argument to DATE_FORMAT() instead of the functi

RE: JSTL Date Format Question

2002-04-01 Thread Zvolensky, Thomas J {PDBI~Nutley}
layed 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 retu

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

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
-2.0.11-bin.jar which can be downloaded from > http://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 Lib

RE: JSTL Date Format Question

2002-04-01 Thread Zvolensky, Thomas J {PDBI~Nutley}
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[] for the column alia

Re: JSTL Date Format Question

2002-04-01 Thread Shawn Bayern
rid NOT in ('eurpr1','erispre','dmadmin') order by > UserInfo.lastname,Date > > . > . > . > > > > > > > > > >value="${row.lastname}"/>,  > > > > > > > > >   >   > > > >

JSTL Date Format Question

2002-04-01 Thread Zvolensky, Thomas J {PDBI~Nutley}
Is a conversion from datetime/date format to text required before the tag? If I run the same query and list the records using th DBTAGS library, the date comes out correct. TIA