Amit-
Your email were the most recent of the thread I thought the question originated from you
My apologies..
I am redirecting the reply to the list...

Martin Gainty
>Martin,
>
>I do appreciate the response, but could u redirect this back to the jsp
>group.. I dint ask the original qn.
>
>and he wants the driver (a free one) for the Linux platform..
>
>but I know... I end up doing this when I hit the reply button myself...
>
>-----Original Message-----
>From: Martin [mailto:[EMAIL PROTECTED]]
>Sent: Sunday, August 25, 2002 2:34 PM
>To: [EMAIL PROTECTED]
>Subject: Re: Re: Oracle-JDBC Driver For Linux platform
>
>
>JDBC
>- connect Oracle using JAVA
>
>
>java.sql.*
>
> The library define the database operations
>
> import into your Java program to access DB
>
>JDBC for Oracle
>
> A driver allows the Java programs accessing Oracle server
>
> Already installed in the SE environment
>
> Located in /usr/local/oracle/jdbc/lib
>
> Using connection string to connect the Oracle server
>
> jdbc:oracle:thin:@seora:1521:seora
>
>
>
>
>Sample Program
>
>
>// Import the JDBC classes
>
>import java.sql.*;
>
>
>import java.io.*;
>
>import java.util.*;
>
>
>class testingOracle
>
>{
>
> public static void main(String[] args) throws Exception
>
> {
>
> // The connect string
>
> // Load the JDBC driver
>
> DriverManager.registerDriver (new
>oracle.jdbc.driver.OracleDriver());
>
> String connect_string =
>"jdbc:oracle:thin:/@seora:1521:seora";
>
> Connection conn = DriverManager.getConnection
>(connect_string);
>
>
> // Create a statement
>
> Statement stmt = conn.createStatement ();
>
> ResultSet rset = stmt.executeQuery ("select * from
>Auction");
>
>
>----- Original Message -----
>From: "Amit Ghaste" <[EMAIL PROTECTED]>
>To: <[EMAIL PROTECTED]>
>Sent: Saturday, March 15, 2003 4:33 PM
>Subject: Re: Oracle-JDBC Driver For Linux platform
>
>
> > u can fing one at www.oracle.com
> >
> > -----Original Message-----
> > From: A mailing list about Java Server Pages specification and reference
> > [mailto:[EMAIL PROTECTED]]On Behalf Of S Senthil Raja
> > Sent: Tuesday, February 18, 2003 7:00 AM
> > To: [EMAIL PROTECTED]
> > Subject: Oracle-JDBC Driver For Linux platform
> >
> >
> > sir/madam,
> > I'm working in Linux platform.I want to connect Oracle driver in this
> > platform.I need to know where Oracle driver is available to connect Oracle
> > Db using JAVA.
> > -thanks.
> >
> >
> > _________________________________________________________________
> > The new MSN 8: smart spam protection and 2 months FREE*
> > http://join.msn.com/?page=features/junkmail
> >
> >
>===========================================================================
> > To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
> > JSP-INTEREST".
> > For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
> > DIGEST".
> >
> > Some relevant archives, FAQs and Forums on JSPs can be found at:
> >
> > http://java.sun.com/products/jsp
> > http://archives.java.sun.com/jsp-interest.html
> > http://forums.java.sun.com
> > http://www.jspinsider.com
> >
> >
>===========================================================================
> > To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
>JSP-INTEREST".
> > For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
>DIGEST".
> >
> > Some relevant archives, FAQs and Forums on JSPs can be found at:
> >
> > http://java.sun.com/products/jsp
> > http://archives.java.sun.com/jsp-interest.html
> > http://forums.java.sun.com
> > http://www.jspinsider.com
> >


Protect your PC - Click here for McAfee.com VirusScan Online =========================================================================== To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". Some relevant archives, FAQs and Forums on JSPs can be found at: http://java.sun.com/products/jsp http://archives.java.sun.com/jsp-interest.html http://forums.java.sun.com http://www.jspinsider.com

Reply via email to