Link to home
Start Free TrialLog in
Avatar of ehanoi2
ehanoi2

asked on

How to connect to Sybase?

Have you ever connected to Sybase using ASP.NET? Could you show me your code?

To someone who have worked with Sybase Data warehouse: Is the code make connection to Database similar to Dara warehouse?

Thanks

ehanoi
ASKER CERTIFIED SOLUTION
Avatar of abanup
abanup

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of ehanoi2
ehanoi2

ASKER

Thank abanup

Have you ever worked with Sybase data warehouse? I've found the code connect to SQLServer data warehouse (using OLAP)
        ' Connect to the OLAP server
        Dim cn As New ADODB.Connection
        cn.Open("provider=msolap;data source=localhost")
        cn.DefaultDatabase = "Foodmart 2000"

but cannot found the same code for Sybase data warehouse. Do you have one?