Tagged Questions
1
vote
0answers
35 views
Configuring Informix database for JDBC Connection
I'm writing my first android app via Eclipse. I am trying to make a connection to my informix database. I have installed informix's client-side drivers on my system and the program picks them up ...
0
votes
0answers
32 views
Migration Tool between Informix 4Gl to JAVA [closed]
I am looking for Migration Tool between Informix 4Gl to JAVA.
Which tool can we use and what is the percentage of Accuracy?
Please advice me.
-1
votes
1answer
114 views
Connecting to Informix via DriverManager.getConnection is slow
I am using JDBC to connect to an Informix instance via the DriverManager.getConnection method, but I have problems.
DriverManager.getConnection takes a long time to establish a connection with ...
1
vote
2answers
113 views
JPA Transactions on Informix
I need to make an update on a table using JPA 2.0 with EclipseLink 3.0 on a Java SE 7.0 environment, using Non-Transactional Informix DB v. 11.50, the persistence.xml is:
<persistence-unit ...
1
vote
2answers
221 views
Fetching wrongly encoded data via native JDBC Informix driver
I have Informix database configured with:
DB_LOCALE=pl_pl.CP1250
(Polish locale with Windows CP1250 character encoding).
In this database there is a table with VARCHAR column in which most of the ...
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 ...
2
votes
0answers
65 views
Equivalent of 4gl “RECORD LIKE” statement in Java
In 4gl, the statement DEFINE IO_AFPOPF1 RECORD LIKE AFPOPF1.* means all content of table AFPOPF1 assigned to IO_AFPOPF1 variable. If AFPOPF1 table changes, IO_AFPOPF1 also changes automatically.
Can ...
3
votes
2answers
381 views
Convert SQL query “SELECT UNIQUE 1…” in Informix-4GL program to Java code
I want to convert Informix-4GL program to Java, and I have some problems. I have a Java code and connect to Informix with success, but I'm having some problems.
How can I use "SELECT UNIQUE 1..." in ...
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
0answers
710 views
deadlock detected while querying the table in Informix [closed]
I have a multithreading application trying to access (select, update or insert) the table in the Informix 11.50 database using the plain prepared statements.
I keep getting a lot of
...
1
vote
1answer
861 views
Creating stored procedure in informix
I an trying to create new stored procedures.
Below is the code segment for sp.
CREATE PROCEDURE abs_eq (arg1 INTEGER, arg2 INTEGER)
RETURNS BOOLEAN
WITH (NOT VARIANT)
DEFINE ret BOOLEAN;
...
1
vote
1answer
253 views
Informix: using stored procedures in Java
how can I find the parameters(function declaration) of stored procedures in Informix?
whether "{ call sp_csq_activity }" or "{ call sp_csq_activity(?,? ..) }" and their types? And also is there any ...
1
vote
1answer
246 views
Informix CSDK install failing
I'm trying to install the Informix CSDK to get the drivers for an ODBC connection using Perl and DBD::ODBC. When running the ./installclientsdk, I'm getting the following error:
Initializing ...
1
vote
1answer
156 views
How to check if a specific row with certain values has been inserted in the Database
I am using Informix DB. This question may not be tied to one specific database. But I want to know how I can in Java, continuously probe into a Database and check if a certain row has been added to a ...
1
vote
2answers
209 views
what is the replace function in informix for mysql now()
I have table field defined as like this approved_at DATETIME YEAR TO SECOND NOT NULL. In MySQL, when I insert to a datetime field I used MySQL function now(). But I couldn't find any function in ...
1
vote
1answer
191 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
1answer
996 views
Which Informix JDBC driver should I use?
Look at this page:
http://www14.software.ibm.com/webapp/download/search.jsp?go=y&rs=ifxjdbc
I see that the 3.50.JC9 is newer than 3.70JC3DE, which is confusing.
I tested both of them connecting ...
1
vote
2answers
2k views
DSRA9110E: ResultSet is closed
We have a Java class which loops through a result set, which contains Store information, and then starts processing ascii files for each respective stores. For each store to process the ascii file ...
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
1answer
170 views
Entitymanager.persist is failing in Informix UDR
I am unable to understand the reason of failure in UDR here:
while I am compiling the code on windows using Eclipse the programe is able to insert the record in informix DB residing on UNIX while same ...
1
vote
1answer
341 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
1k views
Informix stored procedure return values
I need to create a stored procedure which returns a select statement, say about 4-5 columns with values.
I need to call that from a Java app so I can't put the output into a temp table as that temp ...
1
vote
5answers
1k views
Equivalent Java data type to hold the Informix DATETIME YEAR TO SECOND value?
I wanted to map the Informix DATETIME YEAR TO SECOND to a Java data type.
Can someone give the corresponding Java data type to hold the Informix DATETIME YEAR TO SECOND value?
This is the answer: ...
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
592 views
Informix JDBC PreparedStatement UPDATE Multiset
I want to change MULTISET column of the table, and my code looks something like this:
PreparedStatement pstm = preparedStatement("UPDATE table SET mc = MULTISET{?, ?} WHERE ...");
pstm.setString(1, ...
1
vote
2answers
1k views
How to pass an array object from jdbc code
I have a stored procedure get_data(estargs set(char(1000) not null)) in the informix 11.5 database. I have to use this stored procedure in order to get a value from the database.
I tried using this ...
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
414 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
1answer
107 views
How can seam-gen be customized to support another database?
I would like to create an application from a database schema using seam-gen; unfortunately Informix isn't supported out of the box.
Where can I add another db?
2
votes
2answers
2k views
Problem with Informix JDBC, MONEY and decimal separator in string literals
I have problem with JDBC application that uses MONEY data type.
When I insert into MONEY column:
insert into _money_test (amt) values ('123.45')
I got exception:
Character to numeric conversion ...
1
vote
1answer
416 views
Bulk import from Informix into Oracle
We need to pull some tables from an Informix SE database, truncate tables on Oracle 10g, and then populate them with the Informix data.
Does a bulk import work? Will data types clash?
I'd like to ...
1
vote
6answers
493 views
Handling huge numbers C, Java, Informix
We are in a situation to handle numbers with a maximum of 15 digits. We need to parse this value from a text file, through C, store it in Informix table. There is another Java component that reads ...
