Search results

  1. N

    How to undo procedure

    Cringer : it's just a basic exemple. I haven't use the "not available customer " in order to generate an error. I would like to be able to catch any error during the procedure, send the error to the do transaction block and undo all modification. My explanation wasn't clear in my first post :/...
  2. N

    How to undo procedure

    thank you, its working now :) PROCEDURE upd_customer: define input parameter in-numCust as int. FIND FIRST customer WHERE customer.numCust = in-numCust. /* Update customer FIELD */ /* In order to catch any error during the procedure in this exemple the error is to not find the customer...
  3. N

    How to undo procedure

    Thanks for your help MaximMonin, but its don't work.
  4. N

    How to undo procedure

    Thx for your answer, sorry for the code, i have write it too fast, its just an exemple in order to understand how its works. PROCEDURE upd_customer: define input parameter in-numCust as int. FIND FIRST customer WHERE customer.numCust = in-numCust. /* Update customer FIELD */ END...
  5. N

    How to undo procedure

    Hello, Open Edge 10.1C I would like to know how to undo a procedure, not only the last call but all calls. Here a basic exemple. PROCEDURE upd_customer: define input parameter in-numCust like client.clecli. FIND FIRST customer WHERE customer.numCust = in-numCust. /* Update customer...
  6. N

    use URL (cgi-bin) in a program

    Thanks for your help, I'll take a look
  7. N

    use URL (cgi-bin) in a program

    Hello, OpenEdge : 10.1c on Linux In a program I need to use a URL to receive information. http://www.xxx.com/cgi-bin/xxx.cgi This CGI have an input parameter (string char) and send me back a string char. ex : http://www.xxx.com/cgi-bin/xxx.cgi?azer|aqqsdfq| This cgi-bin is provided...
  8. N

    PDF Include table program ?

    hello, I am looking for the easiest way to generate PDF files with the Progress. Actually i generate XML files with Progress and then i use FPDF lib with php to produce PDF. With this lib i make complex report. But this solution is too complex for making basic reports (automatic board, page...
  9. N

    PDF Include table program ?

    PDFInclude table program ? Hello, Open Edge 10.1C PdfInclude 3.3.3 I need to create PDF files with OpenEdge and after searching the web, I found the program PdfInclude and I'm trying it. I tested the example table.p but I have a problem with the cell border. In the PDF exemple cell...
  10. N

    Is Progress 9.1D supported on Redhat enpterprise 5.3 ?

    You must use your packet manager (i think its always up2date) in order to find this compat lib. You must have an active account to use it. Centos and Redhat are very close, so i think you will find this compat lib without problems ;)
  11. N

    Is Progress 9.1D supported on Redhat enpterprise 5.3 ?

    You can find a compat libstdc++ for old version, on centos 5.3 "yum search libstdc++" return "compat-libstdc++-293.i386 " you must install it.
  12. N

    PHP Progress

    Hello, sorry for my English, I'm french I'm using Progress 9.1E database (character mode, not GUI) I need to connect my Progress database to an Oracle database. People who are in charge of the Oracle database have started programming in PHP, I have access to their database with PHP...
Top