Tagged Questions
The jt400 tag has no wiki summary.
7
votes
2answers
6k views
SQL query of multi-member file on AS400
On AS400 in interactive SQL in a 5250 session,
select * from myfile
returns rows from one member only when myfile has more than one member.
How can I get rows from a specific member?
Important: ...
3
votes
2answers
716 views
getting number of rows inserted on IBM DB2 V6R1 (AS400) through JBDC
We migrated recently to newer V6R1 version of DB2 on AS400, we are using Spring framework (v. 2.5.6.) to communicate with the database. We are calling Spring's NamedParameterJdbcTemplate.update() ...
1
vote
2answers
90 views
howto add database to swing desktop application
I have created an desktop application in Netbeans 7.0 and i have the files, app, view and aboutbox.
And i want to add an database object that is accessible in the application in the duration of the ...
1
vote
2answers
1k views
Create a Spooled File from Java with a specified Job name on iSeries
Is there a way to specifiy the JOB name when creating a spooled file?
So that my created s.f. doesn't have the default "QPRTJOB".
My method that creates a spooled file with the default QPRTJOB job:
...
1
vote
3answers
618 views
AS400 style naming over JDBC
Is there any way I can use AS400 style library/file style naming over JDBC with jt400? I want to be able to run queries like:
SELECT * FROM MYLIBRARY/MYFILE
Thanks
0
votes
1answer
260 views
Calling i-series program from Java yields invalid output
I'm using the jtopen/jt400 toolkit to call programs on an IBM i-series r5v4 (aka AS/400) from Java (actually: JRuby, but I've seen the same problem in pure Java). This works just fine for some ...
0
votes
1answer
356 views
Monitor and handle MSGW messages on a job on an IBM i-series (AS/400) from Java
Does anyone know how one can automatically reply to messages with status MSGW that block a job on an IBM i-series (AS/400)?
I'm using the jt400/jtopen library to access a program on an AS/400 from ...
0
votes
1answer
342 views
Retrieve an array of structs from an RPG program using jt400.jar API's
We use the com.ibm.as400.data.ProgramCallDocument class to interface with our RPG programs on the iSeries through Java. In most of the cases for our WebSphere applications we have fronted our ...
0
votes
5answers
419 views
fetching connection from JNDI >15 minutes!
I have this weird problem, web application connecting to AS400 DB2 server through JNDI, getting connection from JNDI happens to last for about 930-960 seconds!!! Usually it takes 4ms to get a ...
0
votes
1answer
360 views
db2 referential integrity problem
Situation is pretty serious, we have a table in DB2 on AS400 which has defined foreign key to another table, so we are entering record which have regular ID of referenced table so when we enter SQL ...
0
votes
2answers
1k views
AS400 library/file (member) JDBC query
Using JDBC (with jt400 driver / connection, naming=system) I'm running these SQL statements:
"CREATE ALIAS QTEMP/SOURCETEMP FOR " + library + "/" + file + " (" + member + ")"
"SELECT SRCDTA FROM ...