I've just loaded SQL Server 2008, upgrading my SQL Server 2005 instance, and tried to run one of my strataframe applications within the Visual Studio 2008 SP1 IDE. Unfortunately I can't access my database.
The following code:
lcConnection =
"PGD-Vista", _
builder =
causes an exception wit the following details:
ConnectionFailureException This SQL Server version (10.0) is not supported.
Source : Microsoft.SqlServer.ConnectionInfo
Stack Trace: at Microsoft.SqlServer.Management.Common.ConnectionManager.CheckServerVersion(ServerVersion version) at Microsoft.SqlServer.Management.Common.ConnectionManager.InternalConnect(WindowsIdentity impersonatedIdentity) at Microsoft.SqlServer.Management.Common.ConnectionManager.Connect() at MicroFour.StrataFrame.DBEngine.SQL.SQLServerSchema.Connect(String SQLServername, String UserName, String Password, Boolean CheckConnectionOnly) at TMSSerialTest.AppMain.fred() in C:\Users\peterd\VS2005 Workspace\TMS Redevelopment\TMS\TMSSerialTest\AppMain.vb:line 57 at TMSSerialTest.AppMain.SetDataSources() in C:\Users\peterd\VS2005 Workspace\TMS Redevelopment\TMS\TMSSerialTest\AppMain.vb:line 146 at MicroFour.StrataFrame.Application.StrataFrameApplication.Raise_SetDataSources() at MicroFour.StrataFrame.Application.StrataFrameApplication.RunApplication() at TMSSerialTest.AppMain.Main() in C:\Users\peterd\VS2005 Workspace\TMS Redevelopment\TMS\TMSSerialTest\AppMain.vb:line 25 at System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args) at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args) at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() at System.Threading.ThreadHelper.ThreadStart_Context(Object state) at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) at System.Threading.ThreadHelper.ThreadStart()
I've tried this with the project as it was targeted at .Net 2.0, and again targeted at .NET 3.5 with the same result.
I'm running the 1.6.6 Beta version of Strataframe
Is there a simple explanation (and hopefully solution)?
Thanks
Peter