﻿<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>StrataFrame Forum » StrataFrame Application Framework - V1 » Issues  » Advice required on SQL Server 2008</title><generator>InstantForum 2017-1 Final</generator><description>StrataFrame Forum</description><link>http://forum.strataframe.net/</link><webMaster>StrataFrame Forum</webMaster><lastBuildDate>Tue, 09 Jun 2026 22:54:29 GMT</lastBuildDate><ttl>20</ttl><item><title>Advice required on SQL Server 2008</title><link>http://forum.strataframe.net/FindPost18946.aspx</link><description>G'day&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;The following code:&lt;/P&gt;&lt;FONT size=2&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&lt;FONT color=#0000ff size=2&gt;[codesnippet]Dim&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size=2&gt; serverSchema &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&lt;FONT color=#0000ff size=2&gt;As&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&lt;FONT color=#0000ff size=2&gt;New&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size=2&gt; MicroFour.StrataFrame.DBEngine.SQL.SQLServerSchema&lt;/P&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&lt;FONT color=#0000ff size=2&gt;Dim&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size=2&gt; builder &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&lt;FONT color=#0000ff size=2&gt;As&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size=2&gt; System.Data.SqlClient.SqlConnectionStringBuilder&lt;/P&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&lt;FONT color=#0000ff size=2&gt;Dim&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size=2&gt; lcConnection &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&lt;FONT color=#0000ff size=2&gt;As&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&lt;FONT color=#0000ff size=2&gt;String&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size=2&gt; = &lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;&lt;FONT color=#a31515 size=2&gt;""&lt;/P&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#008000 size=2&gt;&lt;FONT color=#008000 size=2&gt;'-- Set the server&lt;/P&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;P&gt;lcConnection = &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&lt;FONT color=#0000ff size=2&gt;String&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;.Format(&lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;&lt;FONT color=#a31515 size=2&gt;"Server={0};Integrated Security=SSPI;Persist Security Info=False;Initial Catalog={1}"&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;, _&lt;/P&gt;&lt;P&gt;&lt;FONT color=#a31515&gt;"PGD-Vista"&lt;/FONT&gt;, _&lt;/P&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;&lt;FONT color=#a31515 size=2&gt;"TMS201"&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;)&lt;/P&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;P&gt;builder = &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&lt;FONT color=#0000ff size=2&gt;New&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size=2&gt; System.Data.SqlClient.SqlConnectionStringBuilder(lcConnection)&lt;/P&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;serverSchema.Connect(builder.DataSource)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color=#0000ff&gt;[/codesnippet]&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;causes an exception wit the following details:&lt;P&gt;ConnectionFailureException&lt;BR&gt;&amp;nbsp; This SQL Server version (10.0) is not supported.&lt;P&gt;Source&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : Microsoft.SqlServer.ConnectionInfo&lt;P&gt;Stack Trace: &lt;BR&gt;&amp;nbsp;&amp;nbsp; at Microsoft.SqlServer.Management.Common.ConnectionManager.CheckServerVersion(ServerVersion version)&lt;BR&gt;&amp;nbsp;&amp;nbsp; at Microsoft.SqlServer.Management.Common.ConnectionManager.InternalConnect(WindowsIdentity impersonatedIdentity)&lt;BR&gt;&amp;nbsp;&amp;nbsp; at Microsoft.SqlServer.Management.Common.ConnectionManager.Connect()&lt;BR&gt;&amp;nbsp;&amp;nbsp; at MicroFour.StrataFrame.DBEngine.SQL.SQLServerSchema.Connect(String SQLServername, String UserName, String Password, Boolean CheckConnectionOnly)&lt;BR&gt;&amp;nbsp;&amp;nbsp; at TMSSerialTest.AppMain.fred() in C:\Users\peterd\VS2005 Workspace\TMS Redevelopment\TMS\TMSSerialTest\AppMain.vb:line 57&lt;BR&gt;&amp;nbsp;&amp;nbsp; at TMSSerialTest.AppMain.SetDataSources() in C:\Users\peterd\VS2005 Workspace\TMS Redevelopment\TMS\TMSSerialTest\AppMain.vb:line 146&lt;BR&gt;&amp;nbsp;&amp;nbsp; at MicroFour.StrataFrame.Application.StrataFrameApplication.Raise_SetDataSources()&lt;BR&gt;&amp;nbsp;&amp;nbsp; at MicroFour.StrataFrame.Application.StrataFrameApplication.RunApplication()&lt;BR&gt;&amp;nbsp;&amp;nbsp; at TMSSerialTest.AppMain.Main() in C:\Users\peterd\VS2005 Workspace\TMS Redevelopment\TMS\TMSSerialTest\AppMain.vb:line 25&lt;BR&gt;&amp;nbsp;&amp;nbsp; at System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)&lt;BR&gt;&amp;nbsp;&amp;nbsp; at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)&lt;BR&gt;&amp;nbsp;&amp;nbsp; at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()&lt;BR&gt;&amp;nbsp;&amp;nbsp; at System.Threading.ThreadHelper.ThreadStart_Context(Object state)&lt;BR&gt;&amp;nbsp;&amp;nbsp; at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)&lt;BR&gt;&amp;nbsp;&amp;nbsp; at System.Threading.ThreadHelper.ThreadStart()&lt;BR&gt;&lt;/P&gt;&lt;P&gt;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. &lt;/P&gt;&lt;P&gt;I'm running the 1.6.6 Beta version of Strataframe&lt;/P&gt;&lt;P&gt;Is there a simple explanation (and hopefully solution)?&lt;P&gt;Thanks&lt;P&gt;Peter</description><pubDate>Thu, 04 Sep 2008 09:08:29 GMT</pubDate><dc:creator>Peter Denton</dc:creator></item><item><title>RE: Advice required on SQL Server 2008</title><link>http://forum.strataframe.net/FindPost19049.aspx</link><description>Awesome sleuthing, Peter!&lt;/P&gt;&lt;P&gt;We can't move our production assemblies forward immediately (too big of a chance of it breaking something with existing non-sql 2008 setups), but this will be included when we move to officially support SQL 2008.</description><pubDate>Thu, 04 Sep 2008 09:08:29 GMT</pubDate><dc:creator>Dustin Taylor</dc:creator></item><item><title>RE: Advice required on SQL Server 2008</title><link>http://forum.strataframe.net/FindPost19041.aspx</link><description>G'day, &lt;P&gt;I know what the problem is and even have a solution. The problem is that StrataFrame 1.6.6 beta has references to&lt;BR&gt;Microsoft.SqlServer.ConnectionInfo v 9.0.242.0,&lt;BR&gt;Microsoft.SqlServer.Smo v 9.0.242.0,&lt;BR&gt;Microsoft.SqlServer.SmoEnum &amp;nbsp;v 9.0.242.0, and&lt;BR&gt;Microsoft.SqlServer.SqlEnum v 9.0.242.0&lt;/P&gt;&lt;P&gt;where to use SQL Server 2008 these need to be changed to&lt;BR&gt;Microsoft.SqlServer.ConnectionInfo v 10.0.0.0,&lt;BR&gt;Microsoft.SqlServer.Smo v 10.0.0.0,&lt;BR&gt;Microsoft.SqlServer.Management.Sdk.Sfc&amp;nbsp;&amp;nbsp;v 10.0.0.0, and&lt;BR&gt;Microsoft.SqlServer.SqlEnum v 10.0.0.0&lt;/P&gt;&lt;P&gt;The solution (not for the fainthearted, only for the brave or foolhardy)&lt;/P&gt;&lt;P&gt;1. Open the "Microfour StrataFrame" solution from "C:\Program Files\MicroFour\StrataFrame Source Code" in visual studio.&lt;/P&gt;&lt;P&gt;2. Change the references above in Projects "MicroFour StrataFrame DBEngine" and "MicroFour StrataFrame UI"&lt;/P&gt;&lt;P&gt;3. Ignore the Warnings about the obsolete encryption method.&lt;/P&gt;&lt;P&gt;3a. I had a couple of problems with missing references but I think they are covered above now. &lt;/P&gt;&lt;P&gt;4. Rebuild the solution&lt;/P&gt;&lt;P&gt;5. You'll probably see that the installation of the "MicroFour StrataFrame UI" .dll failed due to a missing file, this can be rectified by copying and pasting the "AfterBuild.bat ..." line that failed and pasting it into a cmd window runas Administrator.&lt;/P&gt;&lt;P&gt;6. Close down and restart (possibly not necessary, but a good reboot never hurt anyone)&lt;/P&gt;&lt;P&gt;7. Start Visual Studio&lt;/P&gt;&lt;P&gt;7a. I'd managed to have the Strataframe add-in fail earlier, and as a result the strataframe menu didn't appear, but that was fixed through the Tools &amp;gt; Addin manager, enabling the Strataframe add-in, and restarting visual studio.&lt;/P&gt;&lt;P&gt;8. Open the project of interest and&amp;nbsp;connect to the database on the SQL Server 2008 server.&lt;/P&gt;&lt;P&gt;9. Worked for me, but I've so far only gone as far as connecting and seeing that I could retrieve some data.&lt;/P&gt;&lt;P&gt;Hope this is useful&lt;/P&gt;&lt;P&gt;Peter the Foolhardy&lt;BR&gt;</description><pubDate>Thu, 04 Sep 2008 02:21:15 GMT</pubDate><dc:creator>Peter Denton</dc:creator></item><item><title>RE: Advice required on SQL Server 2008</title><link>http://forum.strataframe.net/FindPost18949.aspx</link><description>Hi Peter,&lt;/P&gt;&lt;P&gt;Yes I understand, I also want to use MS-SQL2008 for my 1st SF application to be release in 2 weeks.&amp;nbsp; Let's see what SF Team will say about this.</description><pubDate>Tue, 02 Sep 2008 22:17:15 GMT</pubDate><dc:creator>Edhy Rijo</dc:creator></item><item><title>RE: Advice required on SQL Server 2008</title><link>http://forum.strataframe.net/FindPost18948.aspx</link><description>Thanks Edhy&lt;/P&gt;&lt;P&gt;I know it isn't supported yet by Strataframe, but I've seen another post that encouraged me to believe that it might just work.&lt;/P&gt;&lt;P&gt;We are getting close to releasing our new system, and would like it to be based on SQL Server 2008, hence my desire to get a headstart if I can.&lt;/P&gt;&lt;P&gt;Peter</description><pubDate>Tue, 02 Sep 2008 21:27:17 GMT</pubDate><dc:creator>Peter Denton</dc:creator></item><item><title>RE: Advice required on SQL Server 2008</title><link>http://forum.strataframe.net/FindPost18947.aspx</link><description>[quote][b]Peter Denton (09/02/2008)[/b][hr]ConnectionFailureException&lt;BR&gt;&amp;nbsp; This SQL Server version (10.0) is not supported. &lt;P&gt;Source&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : Microsoft.SqlServer.ConnectionInfo &lt;P&gt;Is there a simple explanation (and hopefully solution)?[/quote] &lt;P&gt;I don't know about a solution, but&amp;nbsp; AFAIK, SF have not announced support for SQL Server 2008 yet.</description><pubDate>Tue, 02 Sep 2008 21:09:24 GMT</pubDate><dc:creator>Edhy Rijo</dc:creator></item></channel></rss>