1. Hibernate 2: check if table exists and get the name of the table out of the class coderanch.comHi, I need to check if table exists before writing to it. So I have 2 questions. This is the way I want to do it. protected boolean tableExists(final Session hsess, final String tableName) throws HibernateException, SQLException { Boolean result = false; Connection connection = hsess.connection(); if(connection != null) { ResultSet tables = connection.getMetaData().getTables(null,null,tableName,null); while(tables.next()) { String currentTableName = tables.getString("TABLE_NAME"); if(currentTableName.equals(tableName)) ... |
2. Hibernate: changing case of table name coderanch.comWe have a MySQL schema with a mapping to a user table in another schema, where the local user has SELECT permission on that table @Entity @Table(schema = "portal", name = "User_") @org.hibernate.annotations.Entity(mutable = false) public class User implements Serializable { As you can see the declared table name is capitalised, as is the table name itself, as well as the ... |
3. get table names from the database forum.hibernate.org |
4. HT_< |
5. Hibernate table name concatenated to itself. forum.hibernate.org |
6. Hibernate not responding to Table name. forum.hibernate.org |
7. Table name too long ? forum.hibernate.orgI have a table in an Oracle database by the name of : POLICY_ACC_YEAR_SNAPSHOT_FACT This table has a M-1 relationship to the POLICY table (one POLICY can have many of these snapshots) When I query a POLICY and get the Policy class, I now want to get all the PolicySnapshots. When I call collection.iterator, I get this stacktrace : |
8. Accessing the actual db table name through hibernate forum.hibernate.orgThanks, so the only option is to keep the config or recreate a new one. I was wondering why can't an unmodifiable config object be exposed from the SessionFactory. Afterall, it's the sessionfactory that is used all over. At any point of time, if I need to get to the meta data on the DB side, my only option left is ... |
9. Native SQLQueries and table names forum.hibernate.orgHi guys! Is there a way to not need to use the table name on a SQL query, letting Hibernate to use it's mapped table? Something like: select {c.*} from {my.package.Customer} {c} In my project, the production schema name is unknown at development time, so we use the configuration property default schema. I tried the docs, but found nothing. If it's ... |
10. Get qualified table name given Java class name forum.hibernate.orgGreetings. I need to get the name of the table, which is mapped to the given Java class. The returned table name needs to be fully qualified and have schema name as a part of it. I tried using MappingStrategy.classToTableName(), but it doesn't include the table schema as a part of the returned table name. Is there any Hibernate API I ... |
11. Table Name Substitutions in Formulas forum.hibernate.org |
12. Using Hibernate to get hold of the table names forum.hibernate.orgHi ! I've been using Middlegen to create *.hbm.xml and *.java files for mapping- and class files from an existing database. Now I want to write a method that returns all the table names in the database. I have yet to find any good description on how this can be implemented using Hibernate. Any good ideas out there...?? Best regards Ted ... |
13. How to get class name from Table name? forum.hibernate.org |
14. One Class, Many Tables: variable table name forum.hibernate.orgHibernate version: 3.0 Using Oracle 10g: I'm new to Hibernate, and I like what I see so far, but I need some help with an odd data model. This data model (inherited, non-negotiable) contains, among other tables, a virtually unbounded number of tables with the exact same structure and slightly different names. For example: my_data_1 my_data_2 .. my_data_n all have the ... |
15. Please help me in accessing all table names from database. forum.hibernate.org |
16. Dinamic table names forum.hibernate.org |
17. How to get table name by code? forum.hibernate.orgLocalSessionFactoryBean lsfb = getLocalSessionFactoryBean(); ClassMetadata meta = getSessionFactoryBean().getClassMetadata(entity.getClass()); String[] propertyNames = meta.getPropertyNames(); Object[] values = meta.getPropertyValues(entity, EntityMode.POJO); boolean[] nullAllowed = meta.getPropertyNullability(); Type[] types = meta.getPropertyTypes(); ... |
18. Rolling Table Names forum.hibernate.orgBit of a bump for this topic. I've got so far but hopefully someone can give me a hand getting over that final hurdle. I've gotten over my table naming problem using a NamingStrategy. Here's the code I'm using: Code: public String tableName(String tableName) { String result = tableName; if (tableName != null && tableName.endsWith(WILDCARD)) { ... |
19. Uppercase TABLE names with backticks doesn't work ! forum.hibernate.orgHello, I'm relatively new to hibernate. It looks good but I have a very big problem... Our database has all the tables names in uppercases, USER, USERGROUP, etc... In my hibernate config file I have something like this.... |
20. Howto get real table name in Hibernate? forum.hibernate.org |
21. Table name is variable forum.hibernate.orgHello, I have this scenary: I'm developing an application for a wear store, they have the articles divided in sesasons, so there is a table for the articles of summer of 2008, winter 2008 and so on. There are one table for each season and years, i.e. S08_ARTICLES, W08_ARTICLES, S09_ARTICLES... When the user login in the application selects wich sseason want ... |