Good morning!

We have a database based on Progress. In the data sources, I registered a connection to the database, called it server. Added component ADOConnection1 to Delphi, registered connection in the field

(Provider=MSDASQL.1; Password=odbc; Persist Security Info=True; User ID=odbc; Mode=Read; Extended Properties="DSN=server; UID=ODBC; PWD=***; HOST=192.168.3.157; PORT=5005; DB=ub")` 

set the connected field to true.

Added another ADOTable component, put ADOConnection1 in the Connection field, put the desired table in the TableName field, set True to the Active field and issue an error message

[Data Direct][ODBC Progress driver][Progress]Table/View/Synonym not found (7519)

    1 answer 1

    Try adding PUB. in front of the table name in the TableName property PUB. .

    For example: PUB.MY_TABLE

    • Yes thanks a lot! Earned !!!!! - Ivanov Evgeny Vladimirovich
    • 3
      there is a tick to the left of the answer to accept - knes