Example #1
0
 static void loadTraceProperties() {
   // The following section is new
   // Load and apply the JDBC Server Trace value.
   String value = SystemProperties.getProperty(SystemProperties.TRACE_JDBC_SERVER);
   if (value != null) {
     try {
       JDBCServerTraceCategories_ = (new Integer(value)).intValue();
     } catch (Exception e) {
       if (JDTrace.isTraceOn())
         JDTrace.logInformation(
             "ServerTrace", "Value " + value + " for JDBCServerTrace is not valid.");
     }
   }
 }