Microsoft SQL Server 2012 support
Upgraded: Database scripts install_db.sql and upload_db.sql in order to support MSSQL2012 Upgraded: Installer to allow setup WebsitePanel with MSSQL2012 Added: MsSqlServer2012.cs
This commit is contained in:
parent
e294a3db8a
commit
bb347537af
24 changed files with 1179 additions and 18 deletions
|
@ -124,11 +124,11 @@ namespace WebsitePanel.Setup
|
|||
{
|
||||
// check SQL server version
|
||||
string sqlVersion = GetSqlServerVersion(connectionString);
|
||||
if (!sqlVersion.StartsWith("9.") && !sqlVersion.StartsWith("10."))
|
||||
if (!sqlVersion.StartsWith("9.") && !sqlVersion.StartsWith("10.") && !sqlVersion.StartsWith("11."))
|
||||
{
|
||||
// SQL Server 2005 engine required
|
||||
e.Cancel = true;
|
||||
ShowWarning("This program can be installed on SQL Server 2005/2008 only.");
|
||||
ShowWarning("This program can be installed on SQL Server 2005/2008/2012 only.");
|
||||
return;
|
||||
}
|
||||
int securityMode = GetSqlServerSecurityMode(connectionString);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue