handling offline and inassisable db in oe (#369)

* handling offline and inassisable db in oe
This commit is contained in:
Leila Lali
2017-06-07 12:21:24 -07:00
committed by GitHub
parent 3bf562acf0
commit b60a865706
26 changed files with 371 additions and 199 deletions

View File

@@ -2333,6 +2333,14 @@ namespace Microsoft.SqlTools.ServiceLayer
}
}
public static string DatabaseNotAccessible
{
get
{
return Keys.GetString(Keys.DatabaseNotAccessible);
}
}
public static string ScriptingParams_ConnectionString_Property_Invalid
{
get
@@ -4229,6 +4237,9 @@ namespace Microsoft.SqlTools.ServiceLayer
public const string SystemVersioned_LabelPart = "SystemVersioned_LabelPart";
public const string DatabaseNotAccessible = "DatabaseNotAccessible";
public const string ScriptingParams_ConnectionString_Property_Invalid = "ScriptingParams_ConnectionString_Property_Invalid";

View File

@@ -1339,6 +1339,10 @@
<value>System-Versioned</value>
<comment></comment>
</data>
<data name="DatabaseNotAccessible" xml:space="preserve">
<value>The database {0} is not accessible.</value>
<comment></comment>
</data>
<data name="ScriptingParams_ConnectionString_Property_Invalid" xml:space="preserve">
<value>Error parsing ScriptingParams.ConnectionString property.</value>
<comment></comment>

View File

@@ -667,6 +667,8 @@ History_LabelPart = History
SystemVersioned_LabelPart = System-Versioned
DatabaseNotAccessible = The database {0} is not accessible.
############################################################################
# Scripting Service

View File

@@ -2096,6 +2096,11 @@
<target state="new">No Applicable Filegroup</target>
<note></note>
</trans-unit>
<trans-unit id="DatabaseNotAccessible">
<source>The database {0} is not accessible.</source>
<target state="new">The database {0} is not accessible.</target>
<note></note>
</trans-unit>
</body>
</file>
</xliff>