tags:

views:

252

answers:

3

I am using JPA and I need to make the "tableName" a variable.

In a database, I have many tables, and my code needs to access the table where I specify it to read.

@Entity
@Table(name = "tableName")
public class Database implements Serializable {...............}

Any ideas?

A: 

You can do something like this, if thats your concern, I guess. Never tried it, its just a wild guess. But thats the usual practice, I follow for Named Queries, yes thats different thing altogether.

@Entity
@Table(name = Database.tableName)
public class Database implements Serializable {
    public static String tableName = "TABLE_1";
    ...............
}

But I don't see why anyone would do that. Could you tell us what are you up to? Why you have few tables exactly same definition?

[Edited]

I tried your solution. It did not work, it says: The value for annotation attribute Table.name must be a constant expression.

So, isn't that clear enough? I mean you can't do that. And I believe its quite logical. If you want Hibernate to generate your schema then you can define all the entities you want, in the schema, and with the appropriate relationships.

Adeel Ansari
Ok, this is my scenario. I have one JPA class called "Database" and I can have many number of Tables (depending on the input data from the client side). So, for now, the Database class only creates ONE table when it runs (@Table = name). But I need this class to create Tables at runtime with the TableName variable coming from some where else. I tried your solution. It did not work, it says: The value for annotation attribute Table.name must be a constant expression.
zengr
To rephrase: I need dynamic schema. Where the Table is created on the fly.
zengr
@zengr: Check out my addendum to the post.
Adeel Ansari
Thanks for your help. :) I am using JPA and one more question, will "em.createNativeQuery(create table SQL query)" work? where EntityManager em.
zengr
and, is this post a workaround? http://java.dzone.com/articles/hibernate-dynamic-table-routin
zengr
@zengr: Yes the query should work. Regarding the example, I don't see how that fits in. It is discussing the issue of accessing 2 different schemas.
Adeel Ansari
A: 

Specifying the table name at runtime is not possible, this is simply not how JPA works (and I'm still not sure to get your requirement). Either map different entities on your set of tables and run various queries or build them dynamically (maybe using the Criteria API) depending on the input from the client side or use something else than JPA (like iBATIS).

Pascal Thivent
Is this a possible workaround? http://java.dzone.com/articles/hibernate-dynamic-table-routin
zengr
@zengr I can't answer this question, I still don't understand what you're trying to do. Dynamic tables? Different schemas? This is not clear.
Pascal Thivent
@zengr It does look like this link does what you want (although it can completely obfuscate things for a maintenance engineer). Hibernate Shards is also an interesting option. But when you go in this direction, ask yourself many many times "Do you really need this?". Is your project really really complex to warrant this complex solution?
Calm Storm
A: 

I'm going to try modifying orm.xml at runtime before loading the entitymanager

Hugh