Search results

  1. C

    dbtool and Program Compiles

    No it wont effect crc, you can use it. Casper.
  2. C

    Code Page Conversion

    If I am not mistaken then this is default. So you don't have to change your code to do this. You must specially take care of the situations where you don't want it to be character. Like the example in the i18n guide with regard to file size: DEFINE VARIABLE iFloppySize AS INTEGER NO-UNDO...
  3. C

    Progress licensing

    Ok, I understand. I will look into this further. Casper
  4. C

    I need service pack for progress v9.1d

    www.progress.com/progress/esd/myproducts.jsp Casper.
  5. C

    Connect Progress 8.3a with Oracle 9i

    if the local Progress person has the sources then he can also upgrade... With recent releases of Progress it is no problem to extract data from Progress database. I think that the sql that is used in Progress 8.3a is sql89. some background...
  6. C

    Progress licensing

    Thanks Thomas, My problem is that I think that, since we are moving from client/server to n-tier appserver application, Progress isn't going to be thrilled if we stay on the concurrent user license model. Since our concurrent users on the database will be much less... Or is that a wrong...
  7. C

    What is the difference between Stateless and state-free

    Thanks for that. I didn't encounter that one yet. We use state free apsserver in our new product. Yesterday I also found out that, although it is possible to lock the appserver by running a procedure persistent, it isn't possible to make another call to the appserver to run a procedure in that...
  8. C

    Progress licensing

    Hi all, We need to change our licensing model for our customers from concurrent user to Application server Enterprise/named user model. I was wondering if anybody knows if we are still going to need enterprise database licenses for all our customers or does it suffice to have enough db...
  9. C

    ODBC width change

    search here @progresstalk for dbtool or just use it: option 2. Casper.
  10. C

    Is it possible to use a variable as an array extent.

    Like Thomas said: we can: RUN fillextent (INPUT 3). RUN fillextent (INPUT 4). RUN fillextent (INPUT 5). PROCEDURE fillextent: DEFINE INPUT PARAMETER iLength AS INTEGER NO-UNDO. DEFINE VARIABLE iExtent AS INTEGER EXTENT NO-UNDO. DEFINE VARIABLE iTmp AS INTEGER NO-UNDO. ASSIGN...
  11. C

    What is the difference between Stateless and state-free

    In what sense is this automatic? What does it cleanup? I am quite sure it wont change the state of the appserver after a request, that is still the responisbility of the programs running on the appserver. It also doesn't cleanup dynamic objects... I am also always struglling with the...
  12. C

    AppBuilder screen smaller than application

    The parameter for the servicename or portnumber of the database broker is -S (capital), -s is a different parameter: stack size. Casper.
  13. C

    Multiple Selection Browse

    you are displaying values of the colums not values of the buffer who has focus. Change the code to MESSAGE ean.ean ean.description VIEW-AS ALERT-BOX INFO BUTTONS OK. And you will see it acts as you think it should. Casper.
  14. C

    onclick to run an internal procedure. Is it possible?

    Progress runs only server side, so you can't run a progress procedure directly. With the onclick event however you can make a call to progress to run a procedure without submitting the whole page using javascript. You don't tell us what the Progress procedure will be doing. But this sounds like...
  15. C

    Backup Still....

    I really don't understand the problem you have and I don't have a version that old to test with. But with version 9 this works if you have directories with spaces: set DLC=c:\DLC9 set PATH=%DLC%\bin;%PATH% call _dbutil probkup "C:\dir with spaces\sports\sports2000" c:\temp\bu.budb >>...
  16. C

    MODULO Function behaves differently for decimal values

    Modulo expects integer values, so the values you entered are turned into integers and therefore you get 1, since int(78.75) = 79. DEFINE VARIABLE i1 AS INTEGER NO-UNDO. DEFINE VARIABLE i2 AS INTEGER NO-UNDO. ASSIGN i1 = INT(78.75) i2 = INT(26.25). MESSAGE i1 i2 VIEW-AS...
  17. C

    vBulletin Upgrade to version 3 beta

    Thanks for that, I always find that the difficult part of deleting posts. It suddenly makes reactions on that a bit weird :-) And I don't dare to edit your posts :-) How about the posts of Avemaamemndoc, for instance here: http://www.progresstalk.com/showthread.php?t=116433 also pretty weird...
  18. C

    JDBC on 10.1B

    Ok I just tested the following (used 10.1B03 on RH EL 4): Copied from linux machine to local windows (vista SP2) directory: $DLC/java/openedge.jar $DLC/java/util.jar $DLC/jave/base.jar Setup driver for test purposes with Squirrel (http://squirrel-sql.sourceforge.net/#installation)...
  19. C

    vBulletin Upgrade to version 3 beta

    I already thought it was suspicious, did you see the other posts? Thanks, Casper
  20. C

    Secondary SQL Broker

    KB P18365: http://progress.atgnow.com/esprogress/Group.jsp?bgroup=progress&id=P18365 And the corresoponding way to get SQL access working on SCO (sql89): KB 17204: http://progress.atgnow.com/esprogress/Group.jsp?bgroup=progress&id=17204 HTH, Casper
Back
Top