Skip to main content
summaryrefslogtreecommitdiffstats
blob: b2b5f9c8f9e4ef33cc69fbf12786ff03236a57af (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*******************************************************************************
 * 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.ui.admin.dbtabletab;

import org.eclipse.osee.framework.core.exception.OseeCoreException;
import org.eclipse.osee.framework.database.core.ConnectionHandler;
import org.eclipse.osee.framework.database.core.IOseeStatement;
import org.eclipse.osee.framework.logging.OseeLevel;
import org.eclipse.osee.framework.logging.OseeLog;
import org.eclipse.osee.framework.ui.admin.AdminPlugin;

public class OseeInfoDbItem extends DbItem {

   public OseeInfoDbItem() {
      super("OSEE_INFO");
   }

   @Override
   public boolean isWriteable(String columnName) {
      return true;
   }

   @Override
   public boolean isBems(String columnName) {
      return false;
   }

   public String returnTic(String str) {
      return "'" + str + "'";
   }

   @Override
   public int getColumnWidth(String columnName) {
      return 100;
   }

   public boolean exists(String key) {
      boolean toReturn = false;
      IOseeStatement chStmt = null;
      try {
         chStmt = ConnectionHandler.getStatement();
         String query = "SELECT * FROM " + getTableName() + " WHERE OSEE_KEY = " + returnTic(key);
         chStmt.runPreparedQuery(query);
         toReturn = chStmt.next();
      } catch (OseeCoreException ex) {
         OseeLog.log(AdminPlugin.class, OseeLevel.SEVERE_POPUP, ex);
      } finally {
         if (chStmt != null) {
            chStmt.close();
         }
      }
      return toReturn;
   }

   @Override
   public void save(DbDescribe describe, DbModel model) {
      try {
         String key = (String) model.getColumn(describe.indexOfColumn("OSEE_KEY"));
         String value = (String) model.getColumn(describe.indexOfColumn("OSEE_VALUE"));
         String query;
         if (exists(key)) {
            query = "UPDATE " + getTableName() + " SET OSEE_KEY = ?, OSEE_VALUE = ? WHERE OSEE_KEY = ?";
            ConnectionHandler.runPreparedUpdate(query, key, value, key);
         } else {
            query = "INSERT INTO " + getTableName() + " (OSEE_KEY, OSEE_VALUE) VALUES (?, ?)";
            ConnectionHandler.runPreparedUpdate(query, key, value);
         }
      } catch (OseeCoreException ex) {
         OseeLog.log(AdminPlugin.class, OseeLevel.SEVERE_POPUP, ex);
      }
   }

   @Override
   public DbModel createNewRow(DbModel example) {
      DbModel dbModel = new DbModel();
      for (int x = 0; x < example.getValues().length; x++) {
         dbModel.addColumn(x, "");
      }
      dbModel.setColumn(0, "NEW");
      dbModel.setColumnChanged("KEY");
      return dbModel;
   }

}

Back to the top