So, you don't really need tomcat per say to talk to oracle, you need your servlets/jsps to be able to talk to oracle. What type of data are you working with and how big is it? That's really the question to ask that'll tell you what version of oracle to use. If you using small data (standard types or lobs) then any version should work ok. But you'll want to be in the READ_COMMITED transaction isolation mode (default). If you're working with large lobs (>25 megs) you'll probably want to be on 9.2.0.1.0 or better (or a patched 9.1, but not an 8.x version I think). And you'll want to make sure you're using the jdbc driver supplied by the database, or one from a newer version, the older ones with newer databases tend to cause problems. Personal/Standard/Enterprise may not matter.
--mikej -=----- mike jackson [EMAIL PROTECTED] > -----Original Message----- > From: Swapneel Dange [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, February 19, 2003 4:11 PM > To: [EMAIL PROTECTED] > Subject: Re: JDBC & ORACLE implementation ! > > > hi ! > > frankly speaking, i am very new to the database concepts. i am > trying to use > the "Oracle Database Personal Edition" for my use here. But i can > tell about > the version of the TOMCAT, i am using , its 3.3.1a. if u could tell me in > detail as to what ORACLE product i should use will be great. > > By the way i am using this database for the users to send data from 3 > different states on the webserver i am running here. so that when > that data > which are huge files coem over here, i can massage them and get the > particular details i want for my use. > > thanx ! > > Swapneel Dange > 505-642-4126 > http://www.cs.nmsu.edu/~sdange > > > > > > >From: "Andoni" <[EMAIL PROTECTED]> > >Reply-To: "Tomcat Users List" <[EMAIL PROTECTED]> > >To: "Tomcat Users List" <[EMAIL PROTECTED]> > >Subject: Re: JDBC & ORACLE implementation ! > >Date: Wed, 19 Feb 2003 10:09:16 -0000 > > > >The implementation is based on which driver you use, which > mostly depends > >on > >which version of Oracle you are running. > > > >What version numbers are you using for Oracle & Tomcat > > > >----- Original Message ----- > >From: "Swapneel Dange" <[EMAIL PROTECTED]> > >To: <[EMAIL PROTECTED]> > >Sent: Wednesday, February 19, 2003 9:47 AM > >Subject: JDBC & ORACLE implementation ! > > > > > > > hi there ~ > > > > > > i am curious to know as to how can u implement ORACLE database in the > > > TOMCAT. and can somebody tell me as to where i can read the > >DOCUMENTATION > > > for the implementation of the JDBC connectivity under TOMCAT. > > > > > > Swapneel Dange > > > 505-642-4126 > > > http://www.cs.nmsu.edu/~sdange > > > > > > > > > > > > > > > _________________________________________________________________ > > > MSN 8 with e-mail virus protection service: 2 months FREE* > > > http://join.msn.com/?page=features/virus > > > > > > > > > --------------------------------------------------------------------- > > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > > > > > > > >--------------------------------------------------------------------- > >To unsubscribe, e-mail: [EMAIL PROTECTED] > >For additional commands, e-mail: [EMAIL PROTECTED] > > > _________________________________________________________________ > Protect your PC - get McAfee.com VirusScan Online > http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963 > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
