CONECTAR BANCO PROGRESS

DIEGO.SLIVER 01/11/2011 16:19:01
#388289
Boa tarde amigos

Alguem já fez conexao em banco de dados progress??

Alguem teria algum driver ODBC pra me passar

Valeu!!!
AJSO 01/11/2011 16:43:01
#388296
Caro DIEGO,

Progress ODBC Driver
TypeODBC Driver
Usage
ManufacturerProgress Software

DSN=myDSN;HOST=myServerAddress;DB=myDataBase;UID=myUsername;PWD=myPassword;PORT=2055;

DataSourceName=myDSN;HostName=myServerAddress;Database=myDataBase;LogonID=myUsername; Password=myPassword;PortNumber=2055;

--------------------------------------------------------------------------------------------------------------------------------
.NET Framework Data Provider for ODBC

VB.NET code sample

Imports System.Data.Odbc
Dim myConnection As OdbcConnection = New OdbcConnection;();
myConnection.ConnectionString = myConnectionString
myConnection.Open()
//execute queries, etc
myConnection.Close()


C# code sample

using System.Data.Odbc;
OdbcConnection myConnection = new OdbcConnection;();
myConnection.ConnectionString = myConnectionString;
myConnection.Open();
//execute queries, etc
myConnection.Close();

Neste endereço vc pode baixar qq versão driver de Acesso AO PROGRESS

http://uda.openlinksw.com/odbc-progress-st/
Tópico encerrado , respostas não são mais permitidas