Re: jdbc url for mySql

2002-09-30 Thread Yogiswar Vanama
Hi, 1) Confiure your jmsconfig.xml as follows: 2) Create two environment varibles on the machine where JMS is installed a) JAVA_HOME your java home ex: c:\j2sdk1.4.0\ b) OPENJMS_HOME your JMS server ex: c:\openjms-0.7.2 regards Yogiswar --- Luis A <[EMAIL PROTECTED]> wrote:

JAR file of org.gjt.mm.mysql.jdbc2.optional.*;

2002-10-02 Thread Yogiswar Vanama
Hi JSPsters, I have a class called TempPool in which it is importing the following package import org.gjt.mm.mysql.jdbc2.optional.*; My Question is: In which jar file Can I find the above class files. Can any one send the above jar file. with regards Yogiswar --- Dror Matalon <[EMAIL PROTECT

jdbc2_0-stdext.jar

2002-10-02 Thread Yogiswar Vanama
Hi JSPsters, I got it myself.. The concern jar file is : jdbc2_0-stdext.jar thanks Yogiswar --- Yogiswar Vanama <[EMAIL PROTECTED]> wrote: > Hi JSPsters, > > I have a class called TempPool in which it is > importing the following package > > import org.gjt.mm.mysql.

JAR file of org.gjt.mm.mysql.jdbc2.optional.*;

2002-10-03 Thread Yogiswar Vanama
Hi JSPsters, I have a class called TempPool in which it is importing the following package import org.gjt.mm.mysql.jdbc2.optional.*; My Question is: In which jar file Can I find the above class files. Can any one send the above jar file. with regards Yogiswar ___

Re: JAR file of org.gjt.mm.mysql.jdbc2.optional.*;

2002-10-03 Thread Yogiswar Vanama
ects/mmmysql/ this may > help you. > > > Cheers > Daniel.E > > -Original Message- > From: A mailing list about Java Server Pages > specification and reference > [mailto:[EMAIL PROTECTED]] On Behalf Of > Yogiswar Vanama > Sent: Thursday, October 03, 2002

Re: simple question about jsp

2002-10-04 Thread Yogiswar Vanama
Hi, Change ur code as follows: = Hello! The properties are <%= new System.getProperites() %> b'cause java.lang package is default package. U need not to give the package name. Even if you want to give you can write : java.lang.System.getProperties() I hope, u got th