0 Replies Latest reply on Mar 24, 2003 8:10 AM by abyss

    How can I get connection from pool with jts?

    abyss

      just in weblogic i can do it like this:
      Class.forName("weblogic.jdbc.jts.Driver");
      Properties properties = new Properties();
      properties.put("user","sys");
      properties.put("password","sss");
      myConnection = DriverManager.getConnection("jdbc:weblogic:jts:ejbPool",properties);

      how can i do in JBoss?
      Thanks!