Recent content by Ofi

  1. O

    Time Datatype

    Time returns int Hi See TIME function.
  2. O

    Search by an string (use matches)

    Collation table problem display "a" = "á". returns "yes", => Your collation table (in convmap.cp or/and in startup parameter or/and in DB ) is not correct for these characters! Correct return is "no" See Progress Internationalization Guide
  3. O

    Load Collation Table without developer license?

    :-)))))))) Replace progress.cfg OK :-)
  4. O

    Load Collation Table without developer license?

    I need different collation table then these in Progress\prolang\ *.db I have Provision 9.1b (Win). My client has Workgroup DB 9.1A (Unix). Progress cannot load collation table remotely (Client - Server). Server Locally: Data Administration - Load Definitions - Load Data Definition is...
  5. O

    Calculating Age

    Easy DECISION FUNCTION age RETURNS INT ( INPUT pdBirthDay AS DATE ). RETURN YEAR(TODAY) - YEAR(pdBirthDay) - IF MONTH(TODAY) < MONTH(pdBirthDay) OR MONTH(TODAY) = MONTH(pdBirthDay) AND DAY(TODAY) < DAY(pdBirthDay)...
  6. O

    Win 2000 cluster

    Is the Progress DB 9.1 supported on Win 2000 cluster?
  7. O

    Reading standard input

    I have WebSpeed V3.0B and I know all about PROCJI V1.0 ( Fast 4GL is in my favourites). WebSpeed is very expensive for many of my clients! For some tasks It is very easy solution to put prowin32.exe in Application Mappings in IIS. Now you have PROGRESS DB access in state less mode.
  8. O

    Reading standard input

    I use prowin32 like CGI. I read output from Internet Information Server through stdout (HTML Form submitted with Post method ).
  9. O

    Reading standard input

    Can I read stdin only using progress 4gl (v8.3b on Win NT) ? I solve the problem with INPUT THROUGH value(stdinout.exe). But stdinout.exe is written to C.
Top