DCSIMG
SQL,Team System,OLE - Shai Raiten's Blog

Shai Raiten's Blog

It's all about code...

Browse by Tags

All Tags » SQL » Team System » OLE (RSS)
How To Connect SQL 6.5 Database With .NET
How To Connect SQL 6.5 Database With .NET Today I started working on a Migration tool between PVCS Tracker and TFS. During the debug I had a problem with the SqlConnection with the PVCS DB. I trying couple of thing to fix the problem but nothing, then I check the DB version and saw that it's 6.5 DB. SqlConnection is only fits for 7.0 and later, so I had to use OLE DataTable OLEDataReader = new DataTable(); OleDbConnection sqlconn = new OleDbConnection( "Provider=sqloledb;Data Source="...