Re: help needed(java.sql.SQLException: Invalid Oracle URL specified)

2002-07-11 Thread m venkateswara rao
CTED] Subject: Re: help needed(java.sql.SQLException: Invalid Oracle URL specified) Hi Ben, thanks for the response. i tried the way you suggested. no luck. is there anything else i have to check? thanks, Ramesh Kadirisani. Ben Steiner wrote: > > instead of > conn = > DriverManager.getConnectio

Re: help needed(java.sql.SQLException: Invalid Oracle URL specified)

2002-07-11 Thread Ben Steiner
f you give as follows it will work try this... conn = DriverManager.getConnection("jdbc:oracle:[EMAIL PROTECTED]:1521:BIST 1", "oaxapr","oaxapr"); Yogaraj -Original Message- From: Ramesh Kadirisani [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 11, 2002 8:27 PM

Re: help needed(java.sql.SQLException: Invalid Oracle URL specified)

2002-07-11 Thread Ramesh Kadirisani
Hi Ben, thanks for the response. i tried the way you suggested. no luck. is there anything else i have to check? thanks, Ramesh Kadirisani. Ben Steiner wrote: > > instead of > conn = > >DriverManager.getConnection("jdbc:oracle:[EMAIL PROTECTED]:1521:BIST1:oaxapr/oaxapr"); > it should work this

Re: help needed(java.sql.SQLException: Invalid Oracle URL specified)

2002-07-11 Thread Ben Steiner
instead of conn = DriverManager.getConnection("jdbc:oracle:[EMAIL PROTECTED]:1521:BIST1:oaxapr/oaxapr"); it should work this way... conn = DriverManager.getConnection("jdbc:oracle:[EMAIL PROTECTED]:1521:BIST1", "oaxapr","oaxapr"); Ben >>> [EMAIL PROTECTED] 07/11/02 07:51AM >>> hi, i am tryi

help needed(java.sql.SQLException: Invalid Oracle URL specified)

2002-07-11 Thread Ramesh Kadirisani
hi, i am trying to use oracle jdbc driver in my jsp program to connect to oracle database and i am getting the following error. java.sql.SQLException: Invalid Oracle URL specified The following is part of my coding: <%@ page import="java.sql.*,java.io.*, oracle.jdbc.driver.*"%> <% Connection c