Project

General

Profile

1
/**
2
 *  '$RCSfile$'
3
 *    Purpose: An adapter class for Oracle RDBMS.
4
 *  Copyright: 2000 Regents of the University of California and the
5
 *             National Center for Ecological Analysis and Synthesis
6
 *    Authors: Jivka Bojilova
7
 *    Release: @release@
8
 *
9
 *   '$Author: tao $'
10
 *     '$Date: 2002-05-23 20:36:36 -0700 (Thu, 23 May 2002) $'
11
 * '$Revision: 1127 $'
12
 *
13
 * This program is free software; you can redistribute it and/or modify
14
 * it under the terms of the GNU General Public License as published by
15
 * the Free Software Foundation; either version 2 of the License, or
16
 * (at your option) any later version.
17
 *
18
 * This program is distributed in the hope that it will be useful,
19
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21
 * GNU General Public License for more details.
22
 *
23
 * You should have received a copy of the GNU General Public License
24
 * along with this program; if not, write to the Free Software
25
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
26
 */
27

    
28
package edu.ucsb.nceas.dbadapter;
29

    
30
import java.sql.*;
31
import edu.ucsb.nceas.metacat.*;
32

    
33
/**
34
 * The Oracle db adapter implementation.
35
 */
36
public class OracleAdapter extends AbstractDatabase {
37

    
38
  /**
39
   * The Oracle unique ID generator through use of sequences
40
   * The name of the sequence used to generate the unique id 
41
   * is made from the name of the table that uses the id by 
42
   * appending "_id_seq" to it.
43
   * When record is inserted in the table and insert trigger gets
44
   * a nextval from that sequence, select currval of that sequence
45
   * can return the generated key in the same db connection.
46
   *
47
   * @param conn db connection in which the unique id was generated
48
   * @param tableName the name of table which unique id was generate
49
   * @exception SQLException <br/> any SQLException that can be thrown 
50
   *            during the db operation
51
   * @return return the generated unique id as a long type
52
   */
53
  public long getUniqueID(String tableName) 
54
                                         throws SQLException {
55
    long uniqueid = 0;
56
    DBConnection conn = null;
57
    int serialNumber = -1;
58
    Statement stmt = null;
59
    
60
    try
61
    {
62
      //check out DBConnection
63
      conn=DBConnectionPool.getDBConnection("OracleAdapter.getUniqueID");
64
      serialNumber=conn.getCheckOutSerialNumber();
65
      stmt = conn.createStatement();
66
      stmt.execute("SELECT " + tableName + "_id_seq.currval FROM dual");
67
      ResultSet rs = stmt.getResultSet();
68
      if ( rs.next() ) {
69
        uniqueid = rs.getLong(1);
70
      }
71
      stmt.close();
72
    }
73
    finally
74
    {
75
      DBConnectionPool.returnDBConnection(conn, serialNumber);
76
    }
77
    //System.out.println("Unique ID: " + uniqueid);    
78
    return uniqueid;
79
  }
80

    
81
  /**
82
   * The Oracle's function name that gets the current date and time
83
   * from the database server: "sysdate"
84
   *
85
   * @return return the current date and time function name: "sysdate"
86
   */
87
  public String getDateTimeFunction() {
88

    
89
    //System.out.println("The date and time function: " + "sysdate");    
90
    return "sysdate";
91
  }
92

    
93
  /**
94
   * The Oracle's function name that is used to return non-NULL value
95
   *
96
   * @return return the non-NULL function name: "nvl"
97
   */
98
  public String getIsNULLFunction() {
99
    
100
    return "nvl";
101
  }
102

    
103
  /**
104
   * The Oracles's string delimiter character: single quote (')
105
   *
106
   * @return return the string delimiter: single quote (')
107
   */
108
  public String getStringDelimiter() {
109

    
110
    return "'";
111
  }
112
  
113
}
114
    
(2-2/4)