Tagged Questions
0
votes
0answers
50 views
Informix compatible in memory Database for unit testing Java Hibernate application
I'm trying to write unit test cases for a data access layer and we use the Informix database. Since the Informix dialect of SQL uses the ...
0
votes
1answer
194 views
update query statement in informix [closed]
I would to get help from you all regarding my sql statement in Infomix.Please find my code below.I'm joining 5 tables and link with the primary keys. what I need is, I have to update export_flag ...
1
vote
2answers
416 views
Hibernate HQL Query with outer join
I would like to ask how to change the OUTER from Informix to HQL query. Currently facing error with unexpected token:outer
SQL query:
select a.SC_OB_PROFILE_CODE, b.SC_ORIG_SF_GROUP_CODE, ...
2
votes
1answer
92 views
Search without accents must return words with accents
I have a web app developed with Hibernate, Spring and Java, that accesses an Informix database...
Imagine you are searching for a certain record with an accent on it, like "MarĂa", but you write ...
1
vote
1answer
65 views
Internet Explorer shows 404 but web app is still running
I'm developing a web app with Spring, Hibernate and Informix...
It has a data importing process that takes up to 30 minutes, and while the user is waiting for it to end Internet Explorer shows an ...
1
vote
0answers
66 views
IBM informix Timeseries with hibernate
Actually i am trying to use ibm informix database for my application, in that informix i have option for storing timeseries data into a single row, my doubt here is how can i insert and retrieve this ...
2
votes
1answer
705 views
Hibernate + Informix + Blob + byte array
I have troubles saving a byte array to my Informix database, I'll show you how I'm trying:
In Fichero.java among other things I have this:
@Column(name="fichero", columnDefinition="blob")
private ...
1
vote
1answer
192 views
How to query different databases using CreateSqlQuery in hibernate?
I have the following code:
Query query = this.getSession().createSqlQuery("select * from db@server:table where 1=1");
List list = query.list();
which throws this error:
...
1
vote
3answers
3k views
How to perform outer join in Hsql
I have a query like this
SELECT * from table1 t1,table2 t2, OUTER table3 t3
This works in Informix database but when I use it as Hsql then it is not able to find this
"OUTER" keyword only... How to ...
1
vote
2answers
511 views
Hibernate Query problem with Informix
I have written an application using Seam 2.2.1 & MySQL which is working. I am now trying to connect the application to Informix and when I execute a query from hibernate(select user from User ...
2
votes
1answer
4k views
How to do the BATCH insert in JPA?
I am using JPA with Hibernate persistence.
We are using JPA in the following configurations.
persistence-api 1.0 version
hibernate-core 3.3.2.GA version
hibernate-entitymanager 3.4.0.GA version
Is ...
1
vote
1answer
342 views
Question about Hibernate and Informix
Currently, I am running into a problem where I am not able to save any CLOB object with hibernate if it is longer than 4096 characters. Anything below that it works correctly and as expected. The ...
1
vote
1answer
608 views
Informix XA Driver in Play! Framework application
I am trying to use Informix database with a Play! Framework application. I am new to Informix.
I have Informix 11.70 installed on my windows machine and I am running Play 1.1.
In Play! you can ...
2
votes
1answer
495 views
Type casting in Hibernate for column in Informix database
im using Informix for a OR database and on the backend of my application Spring + Hibernate.
The thing is, I make in a String variable the query that inserts data in the database table. In this query ...
1
vote
1answer
56 views
Created query is not supported by my DB
I created an application using seam-gen. The created operation to search the DB ends with and exception (syntax error). The query has a where clause like this:
lower(barcode0_.barcode_ean) like ...
1
vote
3answers
415 views
Generated queries contain schema and catalog name
I've the same problem as described here
In the generated SQL Informix expects catalog:schema.table but what's actually generated is
catalog.schema.table
which leads to a syntax error.
Setting:
...
1
vote
2answers
4k views
What causes this org.hibernate.MappingException?
I'm trying to configure an ejb3 sample application, it's entities where mapped to postgres now I want the app run on Jboss4.3 and Informix using JPA.
If the DDL creation <property ...