Recent content by mikesena

  1. mikesena

    Downloading a file from the web

    Just an update, I now know how to put the memptr straight into a file, but I was wondering if there are any other libraries to use for http transactions. At the moment, I'm using libhttp.p from the standard libraries on oehive.org
  2. mikesena

    Downloading a file from the web

    Hi Guys, What's the best way to download a file from the web and save it to the disk in Progress? I can get the data into a memptr from the web, so if someone knows how to output a memptr to a file that would work. Thanks! Michael
  3. mikesena

    Retrieving Relation Information

    Okay thanks for that, that all makes sense. I guess I'll have to hope that the relations being made in the application I'm developing are meant to be bound together :) Thanks for your help
  4. mikesena

    Retrieving Relation Information

    So in a progress database schema, the only way to tell if there's a relationship between two tables, is if there is a field with the same name? That just seems a bit odd to me.
  5. mikesena

    Retrieving Relation Information

    Thanks for that, I hadn't thought of doing it that way But, is there any way to confirm relationships between tables, rather than comparing common field names between them? I know its bad database programming to call fields by common names (i.e. having a field called 'Name'), but isn't there a...
  6. mikesena

    Retrieving Relation Information

    Thanks for the reply there, I know that's one way of doing it, but what I'd like to do is get that information myself in progress. It needs to be dynamic, rather than knowing the relations beforehand. I.e. where does the data dictionary get the information from?
  7. mikesena

    Retrieving Relation Information

    Hi all, I am working with Progress in OpenEdge 10.2A. Basically what I'd like to do, is work out what relations a table has to other ones. I'm iterating through the list of tables in the database already, so what I then want to do is say 'Customer' is related to 'Orders, Invoices' etc...
Back
Top