Re: Servlets and JDBC

1999-05-05 Thread Joe Shevland
om: David Hecksel [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, May 05, 1999 1:42 PM > To: Curi, Miguel E (Miguel) > Subject: Re: Servlets and JDBC > > I hope you're not planning on too much activity going to that database, or > many > threads simultaneously accessing the da

Re: Servlets and JDBC

1999-05-05 Thread Curi, Miguel E (Miguel)
and JDBC I hope you're not planning on too much activity going to that database, or many threads simultaneously accessing the database. If so, the JDBC-ODBC bridge will likely cause you trouble. Read comp.lang.java.databases for periodic real life feedback on "the bridge". I

FW: Servlets and JDBC

1999-05-05 Thread Romo, AlX P
Try using a system DSN instead of a user DSN. Al R. -Original Message- From: Curi, Miguel E (Miguel) [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 05, 1999 9:36 AM To: [EMAIL PROTECTED] Subject: Servlets and JDBC I am working on a web base application that uses a servlet to access

Re: Servlets and JDBC

1999-05-05 Thread Luc Saint-Elie
Hello, You must set a SYSTEM DSN not a USER DSN Le 12:36 05/05/99 -0400, Curi, Miguel E (Miguel) a écrit: >My program is able to load the driver but it fails to open the connection. > >I am using : > >Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); >Connection conn = DriverManager.getConnection("

Servlets and JDBC

1999-05-05 Thread Curi, Miguel E (Miguel)
I am working on a web base application that uses a servlet to access a database using the JDBC-ODBC bridge (sun.jdbc.odbc.JdbcOdbcDriver). The database is a MS Access database. I am having trouble connecting to the database. My program is able to load the driver but it fails to open the connection