Re: Database access with servlets

2000-10-04 Thread Bertus Viljoen
t: Re: Database access with servlets visit http://www.roseindia.net/jdbc/jdbcconnectivity.htm - Original Message - From: Arun Jayaprakash <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, September 30, 2000 5:04 PM Subject: Database access with servlets > Hi, &g

Re: Database access with servlets

2000-10-04 Thread jdbc
visit http://www.roseindia.net/jdbc/jdbcconnectivity.htm - Original Message - From: Arun Jayaprakash <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, September 30, 2000 5:04 PM Subject: Database access with servlets > Hi, > > I have to write an intra

Re: Database access with servlets

2000-09-30 Thread Anand Krishnan
Create a connection Pool , and use the class to access the DB - Original Message - From: Arun Jayaprakash <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, September 30, 2000 5:04 PM Subject: Database access with servlets > Hi, > > I have to write an intra

Database access with servlets

2000-09-30 Thread Arun Jayaprakash
Hi, I have to write an intranet application using servlets that access an SQL Server database. I want to know how to have a common database object that can be shared by all servlets that may be generated by the application. Suggestions, sample code etc will be helpful. Thanks and bye, Arun Jaya

Database access

2000-07-11 Thread Kerem ÖKTEM
hi, I have some questions about database accesing. I have web site project which will be very popular so that will access to database (which is made in microsoft excell '97) Do i have to do any implementation to handle more than 50 database access at the same time. I think there will be no p

database access

2000-06-12 Thread Ashutosh Galande
Hello, I am pretty new to servlets. I need to access MS SQL server through my servlets. I have some doubts in this regard. 1. How unreliable is it to use jdbc-odbc bridge drivers? Sun does not recommend it. 2. Is there any document,article available which illustrates on database access through

Remote Database Access !!

2000-05-23 Thread sharif mohammed
Hi I have a servlet on JavaWebserver which can access local MS-Access. I want the same servlet to access by specfying a URL in getConnection. con = DriverManager.getConnection("jdbc:odbc://10.0.0.207/SharifFirst","","sharif"); where 10.0.0.207 is the IP address of the local m/c. When i try th

Re: Database access from Servlet other than Jdbc-odbc bridge.

1999-07-22 Thread Eric Knapp
Use Oracle's drivers. They are free and on their web site. At 06:24 PM 7/22/99 +0530, you wrote: >Hi All, > How do we connect to Oracle database from Servlet without using >jdbc-odbc bridge driver. If so , how ? > > Thanks in adv. > > >Naveen Adusupalli >Sierra Optima Ltd. > >" Th

Re: Database access from Servlet other than Jdbc-odbc bridge.

1999-07-22 Thread Branson, Don
Title: RE: Database access from Servlet other than Jdbc-odbc bridge. According the the JDBC drivers page http://www.javasoft.com/products/jdbc/drivers.html, there are many type 2, 3 & 4 drivers available for Oracle. Don > -Original Message- > From: Naveen A [mailto:[EMAIL

Re: Database access from Servlet other than Jdbc-odbc bridge.

1999-07-22 Thread Chris Gow
> Hi All, > How do we connect to Oracle database from Servlet without using > jdbc-odbc bridge driver. If so , how ? > Just surf on over to Oracle's web site and download their JDBC driver. You should be able to find it from their main page. I believe they refer to it as a thin driver, b

Re: Database access from Servlet other than Jdbc-odbc bridge.

1999-07-22 Thread Hemadri Gurramkonda
-Original Message- From: Naveen A [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 22, 1999 7:54 AM To: [EMAIL PROTECTED] Subject: Database access from Servlet other than Jdbc-odbc bridge. Importance: High Hi All,     How do we connect to Oracle database from Servlet without using jdbc

Re: Database access from Servlet other than Jdbc-odbc bridge.

1999-07-22 Thread Hemadri Gurramkonda
Title: RE: Database access from Servlet other than Jdbc-odbc bridge. Naveen, Download Oracle Thin Drivers from http://www.oracle.com/java/jdbc/index.html and set the Classpath to this drivers. This Thin Drivers are written in pure Java and it works fine with Servlets. ~Smiling, ~Hem

Database access from Servlet other than Jdbc-odbc bridge.

1999-07-22 Thread Naveen A
Hi All, How do we connect to Oracle database from Servlet without using jdbc-odbc bridge driver. If so , how ? Thanks in adv. Naveen Adusupalli Sierra Optima Ltd. " The ultimate measure of a man is not where he stands in moments of comfort but where he stands at times of challe

Re: Database Access by Servlet

1999-05-21 Thread Chris Pratt
TECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 18, 1999 12:24 PM Subject: Database Access by Servlet > Using JRun and Oracle (UNIX), we're trying to connect via oci7/8 as opposed to > Thin in order to get a performance boost. We've added the $LD_LIBRARY_PATH t

Re: Database Access by Servlet

1999-05-18 Thread Rod McChesney
Steer clear of the OCI driver. The performance boost is not that large and it's not worth the headache of getting it to actually work (assuming that's even possible). Rod McChesney, Korobra Scott Neufeld wrote: > > Using JRun and Oracle (UNIX), we're trying to connect via oci7/8 as opposed to >

Database Access by Servlet

1999-05-18 Thread Scott Neufeld
Using JRun and Oracle (UNIX), we're trying to connect via oci7/8 as opposed to Thin in order to get a performance boost. We've added the $LD_LIBRARY_PATH to the java.path property, the classes111.zip file to the java.classpath property, and are getting the following error: ORA-12705 "invalid or un

Re: Database Access by Servlet THANKS!!!

1999-05-18 Thread Ibrahim tangara
8 mai 1999 18:40 Objet : Re: Database Access by Servlet >Make sure your ODBC setup is a system DSN, not user. Remove the user and create a new one under System. > > >James > > >Thanks for this prompt answer! >My setting is actually USER DSN. >Is there no sp

Re: Database Access by Servlet

1999-05-18 Thread Ibrahim tangara
Hi ! For the interest of those getting the same problem, the solution to my database connexion mentioned in my first message below is that suggested by James. That is the ODBC setting must be SYSTEM DSN instead of user dsn. Hoping this helps someone else. Thanks again! Ibrahim *

Re: Database Access by Servlet

1999-05-18 Thread morgan thomas
Hi I get the same if the name of the database is not taken from the right parameter or it includes the .mdb. String url = "jdbc:odbc:"+faculty; Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); con = DriverManager.getConnection(url, "", ""); // assuming username, pas

Re: Database Access by Servlet

1999-05-18 Thread James
Make sure your ODBC setup is a system DSN, not user. Remove the user and create a new one under System. James Thanks for this prompt answer! My setting is actually USER DSN. Is there no special settings to do on the web server? According to what is said in the Java Programming B

Re: Database Access by Servlet

1999-05-18 Thread Ibrahim tangara
that on the Administration tool! Ibrahim -Message d'origine- De : James <[EMAIL PROTECTED]> À : [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date : mardi 18 mai 1999 17:02 Objet : Re: Database Access by Servlet >You set it up as a SYSTEM DSN, right? > > >James >

Re: Database Access by Servlet

1999-05-18 Thread James
You set it up as a SYSTEM DSN, right? James - Hello everybody! I 'm trying to acess to a Ms Acess database from a Servet using JWS. I have set properly the odbc DSN but i still get an Exception saying that the DataSource is not found and that there is no Driver specified. (note:The con

Database Access by Servlet

1999-05-18 Thread Ibrahim tangara
Hello everybody! I 'm trying to acess to a Ms Acess database from a Servet using JWS. I have set properly the odbc DSN but i still get an Exception saying that the DataSource is not found and that there is no Driver specified. (note:The connection to the same DB works properly from a java a

Re: Don't deploy generic user ID and password for database access.

1999-03-30 Thread Sam Rose
-Original Message- From: Kito D. Mann [SMTP:[EMAIL PROTECTED]] Sent: Monday, March 29, 1999 4:29 PM To: [EMAIL PROTECTED] Subject:Re: Don't deploy generic user ID and password for database access. Sam Rose wrote: > I've limited them to be able to > >

Re: Don't deploy generic user ID and password for database access.

1999-03-29 Thread Kito D. Mann
--Original Message- > From: Henry J. Cobb [SMTP:[EMAIL PROTECTED]] > Sent: Monday, March 29, 1999 3:29 PM > To: [EMAIL PROTECTED] > Subject:Don't deploy generic user ID and password for database > access. > > Instead, have a property file that reveals

Security.... was Don't deploy generic user ID and password for database access

1999-03-29 Thread Nic Ferrier
is wrong? -Original Message- From: Henry J. Cobb [SMTP:[EMAIL PROTECTED]] Sent: Monday, March 29, 1999 3:29 PM To: [EMAIL PROTECTED] Subject: Don't deploy generic user ID and password for database access. Instead, have a property file that reveals a user ID and pass

Re: Don't deploy generic user ID and password for database access.

1999-03-29 Thread Sam Rose
mits their actions. Or is this wrong? -Original Message- From: Henry J. Cobb [SMTP:[EMAIL PROTECTED]] Sent: Monday, March 29, 1999 3:29 PM To: [EMAIL PROTECTED] Subject:Don't deploy generic user ID and password for database access. Instead, have a property file that reveal

Don't deploy generic user ID and password for database access.

1999-03-29 Thread Henry J. Cobb
Instead, have a property file that reveals a user ID and password for your servlet that ONLY has permissions to run a few SQL functions in your database. ___ To unsubscribe, send email to [EMAIL PROTECTED] and include in the

Re: Apache JServ problems under NT And Javawebserver problem wit h database access

1999-03-23 Thread Hu, Meng P (Meng Pei)
-Original Message- From: Gwendal Tanguy [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 23, 1999 10:38 AM To: [EMAIL PROTECTED] Subject: Re: Apache JServ problems under NT And Javawebserver problem with database access 1)--- I have the same problem with apache Jserv. Any clue? (Maybe

Re: Apache JServ problems under NT And Javawebserver problem with database access

1999-03-23 Thread Gwendal Tanguy
1)--- I have the same problem with apache Jserv. Any clue? (Maybe because I can't create the Apache-Jserv.jar file because of error when I compile files.? but I suppose that the Jservmodule.dll is enough to run it isn't it?) > My problem is I can see the JServ status information about > t