Examples of JNDILinkDatabase


Examples of no.priv.garshol.duke.JNDILinkDatabase

    return db;
  }

  private LinkDatabase makeJNDILinkDatabase(Properties props) {
    String tblprefix = get(props, "duke.table-prefix", null);
    JNDILinkDatabase db = new JNDILinkDatabase(get(props, "duke.linkjndipath"),
                                               get(props, "duke.database"));
    if (tblprefix != null)
      db.setTablePrefix(tblprefix);
    db.init();
    return db;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.