| Author |
problem with jdbc connect database in bean
|
ken123 lai
Greenhorn
Joined: Apr 12, 2002
Posts: 3
|
|
i have download mssqlserver2000 jdbc driver , and include them into classpath, while i connect database in java application, it works perfect, but when i connect it from bean, it output error: "unable to connect database:access denied", i had added the default.properties with jdbc drivers, and the bean also works ok while using cloudscape. can anybody help me, thanks!! the code framework as follow: public void setEntityContext(EntityContext context) { this.context = context; try { Context ic = new InitialContext(); DataSource ds = (DataSource) ic.lookup(dbName); con = ds.getConnection("sa",""); } catch (NamingException e){ throw new EJBException("namingexception:"+e.getMessage()); } catch (SQLException e){ throw new EJBException("sql error: " + e.getMessage()); } catch (Exception e) { throw new EJBException("Unable to connect to database. " + e.getMessage()); } }
|
 |
Dave Vick
Ranch Hand
Joined: May 10, 2001
Posts: 3244
|
|
ken123 lai Welcome to the Java Ranch, we hope you’ll enjoy visiting as a regular however, your name is not in keeping with our naming policy here at the ranch. Please change your display name to an appropriate name as shown in the policy. Thanks again and we hope to see you around the ranch!!
|
Dave
|
 |
 |
|
|
subject: problem with jdbc connect database in bean
|
|
|