English 中文(简体)
Delphi connection to OpenEdge Progress-4GL Database
原标题:

Folks:

Has anyone had success connecting to a Progress-4GL database with Delphi?   I ve been unable to establish any connection with the ODBC driver provided by the vendor (Progress OpenEdge 10.1C Driver). I ve entered (what I believe are) the right parameters, but keep on getting an error whenever I test the connection:

   "[DataDirect][ODBC Progress OpenEdge Wire Protocol driver] Socket closed."  

Background: I ve been tasked to re-design a 13-year-old application, but the original programmer did not provide any supporting documents, passwords, configuration setup, etc. (I m on my own)!   To make things worse, online help and useful documentation about Progress is scarce (I had never heard about this database until now).

I want to examine the existing data, maybe create an ERD to familiarize myself with the schema, but I can t even access the data outside of the OpenEdge code.

Any help is appreciated!

最佳回答

If you need help with Progress I suggest you enlist in one or more of the Progress mailing lists at PEG.

Progress is a niche product, and didn t age well, or at least the technical decision taken (and defended) by Progress were abandoned by the rest of the industry, so some things you may take for granted will prove cumbersome or at least a bit alien.

Anyway, PEG is a great resource and the people in there are very knowledgeable and usually eager to help people working with Progress technology (or so they were when I used to subscribe, a few years ago).

问题回答

I ve seen that databasen when I was on college. We had some excerises with it and as far as I remember it was awful experience.

Maybe this link will help. I whish I could help more, though.

If there s still a need for help with Progress, I m a contractor which specializes in the language and can help people with their Progress development or migration problems.





相关问题
what is wrong with this mysql code

$db_user="root"; $db_host="localhost"; $db_password="root"; $db_name = "fayer"; $conn = mysqli_connect($db_host,$db_user,$db_password,$db_name) or die ("couldn t connect to server"); // perform query ...

Users asking for denormalized database

I am in the early stages of developing a database-driven system and the largest part of the system revolves around an inheritance type of relationship. There is a parent entity with about 10 columns ...

Easiest way to deal with sample data in Java web apps?

I m writing a Java web app in my free time to learn more about development. I m using the Stripes framework and eventually intend to use hibernate and MySQL For the moment, whilst creating the pages ...

join across databases with nhibernate

I am trying to join two tables that reside in two different databases. Every time, I try to join I get the following error: An association from the table xxx refers to an unmapped class. If the ...

How can I know if such value exists in database? (ADO.NET)

For example, I have a table, and there is a column named Tags . I want to know if value programming exists in this column. How can I do this in ADO.NET? I did this: OleDbCommand cmd = new ...

Convert date to string upon saving a doctrine record

I m trying to migrate one of my PHP projects to Doctrine. I ve never used it before so there are a few things I don t understand. In my current code, I have a class similar to this: class ...

热门标签