ODBC for Symix

Is this forum helpful?


  • Total voters
    1
  • This poll will close: .

Nathan Jones

New Member
My company is on Symix v.4 w/ a Progress backend from the 1990's. I primarily develop in MS Access and am looking to use a ODBC to create some sort of pass through query to Access for small purposes. I've searched the forums here and haven't found any good advice or articles to help me accomplish this.

Also, I'd like to learn about Progress as much as I can. There don't seem to be any books out there.

Thanks in Advance.
 

tragiclos

New Member
I've had success using the MERANT Progress ODBC Driver. Once you set up a DSN to your Symix server, you can create an ADO connection in Access like so:

Code:
Dim ConnectString as String
Dim Symix as ADODB.Connection

ConnectString = "Provider=MSDASQL; DSN=_____"
Set Symix = New ADODB.Connection
With Symix
   .ConnectionString = ConnectString
   .Open
End With
After that you can execute an SQL query using:

Code:
Dim myRecordset as ADODB.Recordset
Set myRecordset = Symix.Execute(SQLQueryString)
I hope this helps.
 
Top