Disconnecting Database in Proenv

seenunandagiri

New Member
hi guys,

i am new to progress 4gl...i connected to the database by using following command in proenv.
proenv> proserve payroll -H localhost -s 1111.
It is working fine. But the problem is I can't able to diconnect the database in proenv.....
plz...help me in disconnecting the database PAYROLL from port 1111......
 
proserve doesn't connect to the database, it starts a server.

proshut will stop the server.
 
to be more specific:

proshut payroll -by

this will shut down the database unconditionally.

If you mean to really connect and disconnect, one way is to connect with starting a prowin32 session, then type:

connect -db payroll -H localhost -S 1111

if you want to terminate the connection:

disconnect payroll
 
Thanx for your valuable advice.

another problem I am getting with Crystal reports. I created a report using Crystal reports with data stored in a table. By Using openReport() method I generated report in progress 4GL.
But when I changed the data in a table it's not was not reflecting in the report. I tried with REFRESH() method but it is not working. So, can you help me in generate a report whener I change the data in a table.....
 
I'd suggest you open a new topic for this, it being a whole different question than the topic title would suggest :awink:.

There's a much greater chance you will get some useful comment then.
 
Back
Top