Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ODBC for PROGRESS 1

Status
Not open for further replies.

nataliacrespo

Programmer
May 28, 2003
1
0
0
AR
Hello!
I am new in Progress and I don't know how I could connect to Progress by ODBC.
I need the driver, but I don't know where I cant get it.
My application is developed in VB.

Thanks a lot.


Natalia.
 
I've used Openlink to connect to Progress, you can try that.

Carmelo Brual (IT Specialist)
Citrix Administrator
Progress DBA
Cognos Administrator
 
If Progress is installed on the PC that you are using there should be a "MERANT 3.60 32-BIT Progress SQL92 v9.1B" Driver that you can use in the Windows ODBC Data Source Administrator, under the System DSN tab. I have successfuly connected to our progress DBs from MS-Access using this. All the database tables will be preceded with the "PUB_" prefix (PUB_custname).
 
Hi,

I am using Merant 3.60 32 BIT Progress SQL92 v9.1A, when I send a query using Data Source to Progress:

SELECT * FROM TABLE;

The ODBC reports the following error:

[MERANT][ODBC PROGRESS driver][PROGRESS]Table not found

The prefix PUB_ doesnt work.

The table exists and the name is correct in the Progress DataBase.

Please help me!!!
Thanks in advance
 
Try select * from pub.Table
It may reject this if Table is a reserved word. In that case, use
select * from pub."table"
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top