Search results

  1. Scott Auge

    Migrate MYSQL DB to Progress DB

    Huh. Sounds like another little project.
  2. Scott Auge

    Build 2006220234254 of DynToolKit available

    ** What is it Easy to use dynamic query routines. Make em more like for eachs. ** What are the major changes? BUILD 2006220234254 -- Added dyn_tablehdl -- Added dyntoolkit.html (Webspeed example of using dyntoolkit) ** Where to find the package...
  3. Scott Auge

    Build 2006219201537 of DynToolKit Available

    *** What is it? Can dynamic queries be as easy as this? ASSIGN h = dyn_open("FOR EACH Job NO-LOCK"). DISPLAY cDyn_ErrCode cDyn_ErrMsg FORMAT "x(30)". DISPLAY h:NUM-RESULTS COLUMN-LABEL "NumResults". REPEAT: dyn_next(h). IF dyn_qoe(h) THEN LEAVE. DISPLAY dyn_getvalue(h...
  4. Scott Auge

    DynToolKit Build 2006213053930 Available

    ** What is it? An open source free to use set of routines to help write dynamic queries in a more "4GL" manner, for example: ASSIGN h = dyn_open("FOR EACH Job NO-LOCK"). REPEAT: dyn_next(h). IF dyn_qoe(h) THEN LEAVE. DISPLAY dyn_getvalue(h, "Job.JobID") dyn_getvalue(h...
  5. Scott Auge

    Build 2006209000204 pro2pgsql released for download

    ** What is it? Tools to export schema and data out of a Progress DB into a PostgreSQL database. ** Major updates? -- Shane Dunn's cleaning amduus_rsvp from schemas into src/cln_rsvp.bash (scott auge) -- Shane Dunn's defaulting config.ini file in exportsql.p -- Shane Dunn's commenting on...
  6. Scott Auge

    Anyone out there help me?

    Check out source code available at: http://www.amduus.com/OpenSrc/SrcLib
  7. Scott Auge

    New Build 2006200210003 of pro2pgsql

    ** What is it? A set of 4Gl routines to migrate schema and data from a Progress DB to a PostgreSQL database. ** Recent Changes 2006200210003 -- Update export.bash to denote it's ability to export CSV files. 2006200205515 -- Clean table and field names with % to pcnt (shane_dunn at...
  8. Scott Auge

    Build 2006183122141 of pro2pgsql tool kit (Progress 2 PostgreSQL)

    ** What is it? A set of tools to translate Progress schema and data into PostgreSQL schema and data. ** What is the major update? Handle the translation of Progress array'ed fields into PostgreSQL's arrayed fields for the schema. (Thanks to Peter Brown!) ** Where is the documentation...
  9. Scott Auge

    DynToolKit BUILD 2006177192657 Released

    Thanks for the welcome. Sleep is for the dead. :)
  10. Scott Auge

    DynToolKit BUILD 2006177192657 Released

    ** What is it? DynToolKit is a set of APIs to act as an abstraction layer to Progress 4GL (ABL) dynamic query objects. It's purpose is to simplify the complexity of working with these items. How simple can it be? Take this example: ----------- {dyntoolkit.i} DEFINE VARIABLE cRCS AS...
  11. Scott Auge

    New Release Dynamic Queries Tool Kit

    What is it? An abstraction API to make programming dynamic queries a little easier. Like this: ------------- {dyntoolkit.i} DEFINE VARIABLE h AS HANDLE NO-UNDO. /****************************************************************/ /* Test One : A good query...
Back
Top