RE: Register vs. Load of JDBC driver

2003-06-27 Thread Richard Ji
So the Class.forName call is ten times faster than the DriverManager.registerDriver() call? Is that one tenth of a sec vs a sec thing? Class.forName loads the JDBC driver class, then the static initializer part of the JDBC driver registers itself with DriverManager. DriverManager can manage

RE: Register vs. Load of JDBC driver

2003-06-26 Thread Vergara, Michael (TEM)
Mladen: I can't help you with your question, but FatCity also supports a list called the ODTUG-JAVA-L list. Those folks might be able to help. HTH, Mike -Original Message- Sent: Thursday, June 26, 2003 12:35 PM To: Multiple recipients of list ORACLE-L Hi List! I'm not a Java

RE: Register vs. Load of JDBC driver

2003-06-26 Thread Goulet, Dick
Mladen, I'm forwarding this onto our Java GURU. If he has an answer I believe he'll reply. Dick Goulet Senior Oracle DBA Oracle Certified 8i DBA -Original Message- Sent: Thursday, June 26, 2003 3:35 PM To: Multiple recipients of list ORACLE-L Hi List! I'm not a Java

RE: Register vs. Load of JDBC driver

2003-06-26 Thread Richard Ji
What sort of differences? Is the DriverManager method slower than Class.forName()? -Original Message- Sent: Thursday, June 26, 2003 3:35 PM To: Multiple recipients of list ORACLE-L Hi List! I'm not a Java programer so please, forgive me my (blissful) ignorance. My developers are

RE: Register vs. Load of JDBC driver

2003-06-26 Thread Gogala, Mladen
Approximately 10 times slower. Mladen Gogala Oracle DBA Phone:(203) 459-6855 Email:[EMAIL PROTECTED] -Original Message- Sent: Thursday, June 26, 2003 5:15 PM To: Multiple recipients of list ORACLE-L What sort of differences? Is the DriverManager method slower than Class.forName()?