** 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...
*** 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...
** 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...
** 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...
** 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...
** 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...
** 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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.