1. Accessing Oracle and DB2 from same application forum.hibernate.org |
2. working with mssql, db2, but not with oracle forum.hibernate.orgNeed help with Hibernate? Read this first: http://www.hibernate.org/ForumMailingli ... AskForHelp Hibernate version: 2.1.8 Mapping documents: Code between sessionFactory.openSession() and session.close(): Full stack trace of any exception that occurs: Name and version of the database you are using: oracle 9i The generated SQL (show_sql=true): Debug level Hibernate log excerpt: I believe hibernate is generating invalid sql for my oracle database select statements. ... |
3. Need help DB2 vs Oracle forum.hibernate.orgHi, i am new to Hibernate query language. Actually we are migrating an Hibernate+ DB2 application to Hibernate + Oracle application. In one of my java class we have following code. try { outages = (List) session.find( " from Outage as o where o.warningBegin < CURRENT TIMESTAMP " + " and o.outageEnd > CURRENT TIMESTAMP and o.application = 'ALL' " + ... |