Skip to main content
summaryrefslogtreecommitdiffstats
blob: a071357870b3e9b3f1de93114121df96f44dadc7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*******************************************************************************
 * Copyright (c) 2004, 2007 Boeing.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.framework.skynet.core.utility;

import java.util.Collection;
import java.util.Map;
import org.eclipse.osee.framework.core.exception.OseeDataStoreException;
import org.eclipse.osee.framework.database.core.ConnectionHandler;

/**
 * @author Donald G. Dunne
 */
public final class DbUtil {
   private static boolean isInDbInit;

   private DbUtil() {
      // Utility Class - class should only have static methods
   }

   public static void getTableRowCounts(Map<String, Integer> tableCount, Collection<String> tableNames) throws OseeDataStoreException {
      for (String tableName : tableNames) {
         tableCount.put(tableName, getTableRowCount(tableName));
      }
   }

   public static int getTableRowCount(String tableName) throws OseeDataStoreException {
      return ConnectionHandler.runPreparedQueryFetchInt(0, "SELECT count(1) FROM " + tableName);
   }

   public static boolean isDbInit() {
      return isInDbInit;
   }

   public static void setDbInit(boolean isInDbInit) {
      DbUtil.isInDbInit = isInDbInit;
   }
}

Back to the top