[jboss-user] [EJB/JBoss] - Re: getting datasource jndi?

jaikiran do-not-reply at jboss.com
Mon Dec 29 07:15:13 EST 2008


You will first have to lookup the datasource using the JNDI API. Then you can call the getConnection API on the DataSource. Just an example:

  | DataSource ds = (DataSource) new InitialContext().lookup("java:myDS");
  | ds.getConnection();

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4198737#4198737

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4198737



More information about the jboss-user mailing list