Posted By:
Anonymous
Posted On:
Wednesday, August 7, 2002 07:12 AM
Ivan,
The answer to your first question might be the use of an AS400 JDBC driver keyword, which works for Greek chars, so I think, will work for Italian, too. In the connection specs try something like :
jdbc:as400:myAS400;translate binary=true
In this case replace myAS400 with the system name that responds to your system.
Regarding your 2nd question, YES, you must activate journaling to all your tables, otherwise commitment control and transaction isolation will not operate properly. In this case use the OS400 command STRJRNPF to activate it, defining the filename(s).
In case you want to use a different isolation policy on your transactions you can use the following keywords:
jdbc:as400:myAS400;translate binary=true;transaction isolation=none
Instead of "none" you can use "read committed","read uncommitted", "repeatable read" or "serializable".
In case you want more info, try the following url which will get to a very Interesting IBM redbook. On page 139, you can find all the info you need:
http://www.redbooks.ibm.com/pubs/pdfs/redbooks/sg246245.pdf
Hope this was of help....