File tree Expand file tree Collapse file tree 3 files changed +49
-1
lines changed
org.eclipse.persistence.core/resource/org/eclipse/persistence/internal/helper
org.eclipse.persistence.oracle/src/org/eclipse/persistence/platform/database/oracle Expand file tree Collapse file tree 3 files changed +49
-1
lines changed Original file line number Diff line number Diff line change 1
1
# *******************************************************************************
2
- # Copyright (c) 1998, 2015 Oracle and/or its affiliates, IBM Corporation. All rights reserved.
2
+ # Copyright (c) 1998, 2020 Oracle and/or its affiliates, IBM Corporation. All rights reserved.
3
3
# This program and the accompanying materials are made available under the
4
4
# terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
5
5
# which accompanies this distribution.
28
28
# to platform class entries should be placed before less specific entries. Each
29
29
# platform entry must be on its own line, an entry cannot span multiple lines.
30
30
31
+ (?is)oracle.*19.* =org.eclipse.persistence.platform.database.oracle.Oracle19Platform
32
+ (?is)oracle.*18.* =org.eclipse.persistence.platform.database.oracle.Oracle18Platform
31
33
(?is)oracle.*12.* =org.eclipse.persistence.platform.database.oracle.Oracle12Platform
32
34
(?is)oracle.*11.* =org.eclipse.persistence.platform.database.oracle.Oracle11Platform
33
35
(?is)oracle.*10.* =org.eclipse.persistence.platform.database.oracle.Oracle10Platform
Original file line number Diff line number Diff line change
1
+ /*******************************************************************************
2
+ * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved.
3
+ * This program and the accompanying materials are made available under the
4
+ * terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
5
+ * which accompanies this distribution.
6
+ * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
7
+ * and the Eclipse Distribution License is available at
8
+ * http://www.eclipse.org/org/documents/edl-v10.php.
9
+ *
10
+ * Contributors:
11
+ * Oracle - initial API and implementation from Oracle TopLink
12
+ ******************************************************************************/
13
+ package org .eclipse .persistence .platform .database .oracle ;
14
+
15
+ /**
16
+ * <p><b>Purpose:</b>
17
+ * Supports usage of certain Oracle JDBC specific APIs for the Oracle 12 database.
18
+ */
19
+ public class Oracle18Platform extends Oracle12Platform {
20
+ public Oracle18Platform () {
21
+ super ();
22
+ }
23
+ }
Original file line number Diff line number Diff line change
1
+ /*******************************************************************************
2
+ * Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved.
3
+ * This program and the accompanying materials are made available under the
4
+ * terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
5
+ * which accompanies this distribution.
6
+ * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
7
+ * and the Eclipse Distribution License is available at
8
+ * http://www.eclipse.org/org/documents/edl-v10.php.
9
+ *
10
+ * Contributors:
11
+ * Oracle - initial API and implementation from Oracle TopLink
12
+ ******************************************************************************/
13
+ package org .eclipse .persistence .platform .database .oracle ;
14
+
15
+ /**
16
+ * <p><b>Purpose:</b>
17
+ * Supports usage of certain Oracle JDBC specific APIs for the Oracle 12 database.
18
+ */
19
+ public class Oracle19Platform extends Oracle18Platform {
20
+ public Oracle19Platform () {
21
+ super ();
22
+ }
23
+ }
You can’t perform that action at this time.
0 commit comments