Hi,
I am trying to connect to Webtrends reporting DB (ODDB)using JDBC-ODBC bridge.
Below is the code snippet i am trying to use and getting the SQL Exception
"Error code is :1012
Exception SQL java.sql.SQLException: [WebTrends ODBC Driver] Database connection
string is invalid <DRIVER={WebTrends ODBC Driver}> "
Code goes as below
import java.sql.*;
public class TestWebTrend {
public static void main(String args[]){
TestWebTrend
test = new TestWebTrend();
Connection con = test.getConnection();
System.out.println("Connection returned is " +con);
}
public Connection getConnection(){
Connection conn = null;
System.out.println("Inside conncetion object");
try {
// String driverName = "oracle.jdbc.driver.OracleDriver";
String driverName = "sun.jdbc.odbc.JdbcOdbcDriver";
Class.forName(driverName);
//String url = "";
//String url = "jdbc:oracle:thin:@157.96.117.109:80:3mxn6tmzifg";
//System.out.println("url :"+url);
conn = DriverManager.getConnection("jdbc:odbc:Driver={WebTrends ODBC Driver};Server=server name;Database=database name" ,"userID","password");
System.out.println("conn iside fucntion :"+conn);
} catch (ClassNotFoundException e) {
System.out.println("Exception ClassNotFoundException "+e);
} catch (SQLException e) {
System.out.println("Error code is :"+e.getErrorCode());
System.out.println("Exception SQL "+e);
} catch (Exception e) {
System.out.println("Exception general "+e);
}
return conn;
}
}
Can some one please help me solving this.
Thanks in advance
Suchitra