blob: 90c114f650d22c37277e32d32e4d4a3bc118a611 [file] [log] [blame]
/*
* Copyright (c) 1998, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.platform.database.oracle;
/**
* <p><b>Purpose:</b>
* Supports usage of certain Oracle JDBC specific APIs for the Oracle 11 database.
*/
public class Oracle11Platform extends Oracle10Platform {
public Oracle11Platform() {
super();
// Locator is no longer required to write LOB values
usesLocatorForLOBWrite = false;
}
}