Server, Portal, and Enterprise server changes to allow MS SQL Server 2014
Service (Create/Update/Delete) remote databases and users on SQL Server v12 (MS SQL 2014)
This commit is contained in:
parent
9cb4804ab8
commit
f8906f66af
20 changed files with 975 additions and 16 deletions
|
@ -168,4 +168,7 @@
|
|||
<data name="lclMSSQL2012Resources.Text" xml:space="preserve">
|
||||
<value>Microsoft SQL 2012 Quotas</value>
|
||||
</data>
|
||||
<data name="lclMSSQL2014Resources.Text" xml:space="preserve">
|
||||
<value>Microsoft SQL 2014 Quotas</value>
|
||||
</data>
|
||||
</root>
|
|
@ -165,7 +165,7 @@
|
|||
<th colspan="2">
|
||||
<br />
|
||||
<div class="FormButtonsBar">
|
||||
<div class="FormSectionHeader"><asp:Localize ID="Localize3" runat="server" meta:resourcekey="lclMSSQL2012Resources" /></div>
|
||||
<div class="FormSectionHeader"><asp:Localize ID="Localize8" runat="server" meta:resourcekey="lclMSSQL2012Resources" /></div>
|
||||
</div>
|
||||
</th>
|
||||
</tr>
|
||||
|
@ -179,6 +179,25 @@
|
|||
</asp:Repeater>
|
||||
</asp:PlaceHolder>
|
||||
|
||||
<asp:PlaceHolder runat="server" ID="MsSQL2014" Visible="false">
|
||||
<tr>
|
||||
<th colspan="2">
|
||||
<br />
|
||||
<div class="FormButtonsBar">
|
||||
<div class="FormSectionHeader"><asp:Localize ID="Localize7" runat="server" meta:resourcekey="lclMSSQL2014Resources" /></div>
|
||||
</div>
|
||||
</th>
|
||||
</tr>
|
||||
<asp:Repeater runat="server" ID="MsSQL2014_Quotas">
|
||||
<ItemTemplate>
|
||||
<tr>
|
||||
<td class="Width20Pcs" style="white-space: nowrap;"><strong><%# GetSharedLocalizedString("Quota." + GetQuotaItemName((string)Container.DataItem)) %>:</strong></td>
|
||||
<td><%# GetQuotaItemAllocatedValue((string)Container.DataItem) %></td>
|
||||
</tr>
|
||||
</ItemTemplate>
|
||||
</asp:Repeater>
|
||||
</asp:PlaceHolder>
|
||||
|
||||
<asp:PlaceHolder runat="server" ID="MySQL4" Visible="false">
|
||||
<tr>
|
||||
<th colspan="2">
|
||||
|
|
|
@ -1,10 +1,9 @@
|
|||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:2.0.50727.3074
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
|
@ -157,15 +156,6 @@ namespace WebsitePanel.Ecommerce.Portal.UserControls {
|
|||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.PlaceHolder MsSQL2008;
|
||||
|
||||
/// <summary>
|
||||
/// MsSQL2012 control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.PlaceHolder MsSQL2012;
|
||||
|
||||
/// <summary>
|
||||
/// Localize3 control.
|
||||
/// </summary>
|
||||
|
@ -184,6 +174,24 @@ namespace WebsitePanel.Ecommerce.Portal.UserControls {
|
|||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.Repeater MsSQL2008_Quotas;
|
||||
|
||||
/// <summary>
|
||||
/// MsSQL2012 control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.PlaceHolder MsSQL2012;
|
||||
|
||||
/// <summary>
|
||||
/// Localize8 control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.Localize Localize8;
|
||||
|
||||
/// <summary>
|
||||
/// MsSQL2012_Quotas control.
|
||||
/// </summary>
|
||||
|
@ -193,6 +201,33 @@ namespace WebsitePanel.Ecommerce.Portal.UserControls {
|
|||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.Repeater MsSQL2012_Quotas;
|
||||
|
||||
/// <summary>
|
||||
/// MsSQL2014 control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.PlaceHolder MsSQL2014;
|
||||
|
||||
/// <summary>
|
||||
/// Localize7 control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.Localize Localize7;
|
||||
|
||||
/// <summary>
|
||||
/// MsSQL2014_Quotas control.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Auto-generated field.
|
||||
/// To modify move field declaration from designer file to code-behind file.
|
||||
/// </remarks>
|
||||
protected global::System.Web.UI.WebControls.Repeater MsSQL2014_Quotas;
|
||||
|
||||
/// <summary>
|
||||
/// MySQL4 control.
|
||||
/// </summary>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue