Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [eclipselink-users] TENANT_PER_TABLE Problem. Can't compile Named Query.

<?xml version="1.0" encoding="UTF-8"?>
<persistence
	version="2.0"
	xmlns="http://java.sun.com/xml/ns/persistence";
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
	xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd";>
	<persistence-unit name="thehub">
		<provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
		<jta-data-source>jdbc/thehub</jta-data-source>
		<class>fm.thehub.Fan</class>
		<class>fm.thehub.Sale</class>
		<class>fm.thehub.User</class>
		<class>fm.thehub.ItemAttribute</class>
		<class>fm.thehub.Item</class>
		<class>fm.thehub.SoldItem</class>
		<class>fm.thehub.Account</class>
		<exclude-unlisted-classes>true</exclude-unlisted-classes>
		<shared-cache-mode>NONE</shared-cache-mode>
		<properties>
			<property
				name="eclipselink.logging.level.sql"
				value="FINE" />
			<property
				name="eclipselink.logging.parameters"
				value="true" />
		</properties>
	</persistence-unit>
</persistence>




--
View this message in context: http://eclipse.1072660.n5.nabble.com/TENANT-PER-TABLE-Problem-Can-t-compile-Named-Query-tp157573p157584.html
Sent from the EclipseLink - Users mailing list archive at Nabble.com.


Back to the top