Search results

  1. S

    How to connect 2 databases

    Try this : CONNECT db1 <start up parameters>. CONNECT db2 <start up parameters>. FOR EACH db1.customer: FIND db2.customer WHERE db2.customer.id = db1.customer.id NO-ERROR. IF NOT AVAILABLE db2.customer THEN CREATE db2.customer. db2.customer.name = CODEPAGE-CONVERT(db1.customer.name...
  2. S

    Problem with recursive procedure (buffer problem)

    What's the link between buf_Listmst.numparent and buf_listmst.numheader ? If no link, its a problem. Try RUN createsubelements(INPUT buf2_Listmst.numparent ). Regards.
  3. S

    Long time processing procedure

    On UNIX, you can do this : OS-COMMAND value("_progres -b -p proc.p [-param liste_of_params ] &"). Regards.
  4. S

    JDBC Connection troubles

    I am trying to get the copy of jdk1.2 or 1.3 to test
  5. S

    JDBC Connection troubles

    Hi, Here is my program /****************************************************/ import java.io.PrintStream; import java.sql.Connection; import java.sql.DriverManager; public class Essai { public Essai() { } public static void main(String args[]) { try {...
  6. S

    SQL92 Error with Business Objects

    In the past, i have the same pbm. I think in Progress, there are a 4GL broker when the database starts. But BO work with SQL broker, so at the first connection of BO, it start a process names _sqlsrv in a port, by default 1030 or 1031 but you can see it in the .lg of your database. Be sure...
  7. S

    JDBC Connection

    In Windows intallation or Linux, you can see the file jdbc.jar in the INSTALL_DIR/java. Best Regards :)) .
  8. S

    JDBC Connection

    Add to the PATH $DLC/lib Copy $DLC/java/jdbc.jar and $DLC/java/progress.jar in $DLC/lib Add a user or SYSPROGRESS in your database user, with a password( i think it's necessary for mode SQL ) And now this is my code I start my database in port 25003...
Top