0 Replies Latest reply on Sep 6, 2002 7:19 AM by lexx02

    additional native properties for pooled connections

    lexx02

      Dear members,

      using OpenText's database BasisPlus.
      For using the XML features of the database, it's necessary to set additinal properties.
      Native it's looks like this:

      BasisConnection bc= (BasisConnection)DriverManager.getConnection(url, props);
      bc.setPresenter("SYS_PLAIN");

      ...
      BasisStatement bs= (BasisStatement)bc.createStatement();
      bs.setConverter("SYS_BGML_HARD_INDIRECT");
      ...

      The BasisPlus JDBC-driver don't allowed to set one of the properties over url/props.
      Using JBoss connectionpooling, isn't possible to cast Statement/Connection to BasisStatement/BasisConnection.
      Is there an other way to invoke the setter methods in JBoss?

      Thank you for help