Wrox Home  
Search P2P Archive for: Go

  Return to Index  

pro_jsp thread: timedate prob


Message #1 by "java corba" <extremejava@h...> on Fri, 03 Nov 2000 03:36:18 GMT
public void doUpdate()
{
	java.util.Date today = new java.util.Date();
	TimeStamp now = new TimeStamp(today.getTime());
	try
	{
		insert into Visits values(now);
	}
	catch(Exception e);
}

though if you just want datetime for record purposes
i would suggest you to store it as string by doing this
String timeStamp = now.toString();
and later on at client side reconstruct it as TimeStamp
at clinet side you only need to do this
TimeStamp newNow = TimeStamp.valueOf(timeStamp);
This would do the trick
please lemme know if you face any probs
cheers
java_corba
>From: "Nandha" <nandha@e...>
>Reply-To: "Pro_JavaServer_Pages" <pro_jsp@p...>
>To: "Pro_JavaServer_Pages" <pro_jsp@p...>
>Subject: [pro_jsp] Re: Javascript with JSP
>Date: Fri, 3 Nov 2000 08:31:19 +0530
>
>Hai All
>
>      We're trying to develop an application which uses JDK1.3 & MS Sql 
>Sever
>7.0 as back end.
>Can someone tell us how to insert data in the fields which are having
>datatype as "datetime"?
>If you're aware of this, please send me the sample source code to implement
>the same.
>
>Regards,
>Nandha
>
>----- Original Message -----
>From: "Åsa [JSP-list]" <jsplistan@h...>
>To: "Pro_JavaServer_Pages" <pro_jsp@p...>
>Sent: Thursday, November 02, 2000 8:31 PM
>Subject: [pro_jsp] Javascript with JSP
>
>
> > Hi,
> > Anyone know of disadvantages when using Javascript as language instead 
>of
> > Java, with JSP? speed, stability etc?
> >
> > :-) Åsa
> > 
>_________________________________________________________________________
> > Get Your Private, Free E-mail from MSN Hotmail at 
>http://www.hotmail.com.
> >
> > Share information about yourself, create your own public profile at
> > http://profiles.msn.com.
> >
> >
> > ---
> > NEED TECHNICAL TIPS, TOOLS, AND INSIGHTS?  Is FREE okay?
> > Visit EarthWeb for the latest in IT Management, Software Development,
> > Web Development, Networking & Communications, and Hardware & Systems.
> > Click on http://www.earthweb.com for FREE articles, tutorials,
> > and discussions from the experts.
> >
>
>
>---
>NEED TECHNICAL TIPS, TOOLS, AND INSIGHTS?  Is FREE okay?
>Visit EarthWeb for the latest in IT Management, Software Development,
>Web Development, Networking & Communications, and Hardware & Systems.
>Click on http://www.earthweb.com for FREE articles, tutorials,
>and discussions from the experts.
>

_________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Share information about yourself, create your own public profile at 
http://profiles.msn.com.


  Return to Index