Re: nnecting from java to Progress DB using RDBMS
Sorry, I know nothing about that sort of thing (Java coding).
If 10.1 has been setup properly you should be able to connect to it. I would think that you would want to confirm that before you go too far.
I would do the following on the Linux box:
1) Login and start "proenv". You should see a "proenv>" prompt. This confirms that you have a functioning Progress environment.
2) Type "ps -ef | grep -i sql" You should see some results -- if you don't then you need to talk to your DBA about configuring SQL-92 access.
3) Talk to your DBA anyway -- you need to know the port# (after the -S in the output above), a userid and a password in order to connect.
4) Connect using something similar to this:
sqlexp -user UserName -password Password -db dbName -S port
If that all works then you have a functioning SQL-92 on the Linux server. You should be able to do the same things (except for the "ps" command) from your Windows box. (You will need to add -H hostNameOrIPAddr.)
If that works you have a fully functional SQL-92 environment and you only need to figure out the Java part.
If the stuff above doesn't work then no amount of Java coding is going to help you.