📄 resources.designer.cs
字号:
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.1433
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace DatabaseHelper.Properties {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("DatabaseHelper.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
internal static System.Drawing.Bitmap AboutUs {
get {
object obj = ResourceManager.GetObject("AboutUs", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized string similar to --
///-- Dropping stored procedure {0:G} :
///--
///
///IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(N'[{0:G}]') AND OBJECTPROPERTY(id, N'IsProcedure') = 1)
/// DROP PROCEDURE [dbo].[{0:G}]
///
///GO.
/// </summary>
internal static string DropProcedure {
get {
return ResourceManager.GetString("DropProcedure", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {6:G}public {0:G}DataSet {1:G}({2:G})
/// {{
/// DbObject dbo = new DbObject();
/// SqlParameter[] parameters = new SqlParameter[]
/// {{
///{3:G}
/// }};
/// return dbo.RunProcedure("{4:G}", parameters, "{5:G}");
/// }}.
/// </summary>
internal static string ReturnDatasetMethodTemplate {
get {
return ResourceManager.GetString("ReturnDatasetMethodTemplate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {5:G}public {0:G}int {1:G}({2:G})
/// {{
/// int RowsAffected = 0;
/// int Result = 0;
/// DbObject dbo = new DbObject();
/// SqlParameter[] parameters = new SqlParameter[]
/// {{
///{3:G}
/// }};
/// Result = dbo.RunProcedure("{4:G}", parameters, out RowsAffected);
/// return RowsAffected;
/// }}.
/// </summary>
internal static string ReturnRowsAffectedMethodTemplate {
get {
return ResourceManager.GetString("ReturnRowsAffectedMethodTemplate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {5:G}public {0:G}int {1:G}({2:G})
/// {{
/// int RowsAffected = 0;
/// int Result = 0;
/// DbObject dbo = new DbObject();
/// SqlParameter[] parameters = new SqlParameter[]
/// {{
///{3:G}
/// }};
/// Result = dbo.RunProcedure("{4:G}", parameters, out RowsAffected);
/// return Result;
/// }}.
/// </summary>
internal static string ReturnScalarMethodTemplate {
get {
return ResourceManager.GetString("ReturnScalarMethodTemplate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to new SqlParameter("{0:G}",{1:G}).
/// </summary>
internal static string SqlParameterTemplate {
get {
return ResourceManager.GetString("SqlParameterTemplate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to SELECT dbid AS ID, NULL AS ParentID, name AS Text FROM [master].[dbo].[sysdatabases] ORDER BY [name].
/// </summary>
internal static string strDatabasesList2000 {
get {
return ResourceManager.GetString("strDatabasesList2000", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to SELECT database_id AS ID, NULL AS ParentID, name AS Text FROM sys.databases ORDER BY [name].
/// </summary>
internal static string strDatabasesList2005 {
get {
return ResourceManager.GetString("strDatabasesList2005", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to USE {0:G};
///
///SELECT Cols.TABLE_NAME,
/// Cols.COLUMN_NAME,
/// Cols.ORDINAL_POSITION,
/// Cols.DATA_TYPE,
/// Cols.NUMERIC_PRECISION,
/// Cols.NUMERIC_SCALE,
/// Cols.IS_NULLABLE,
/// Cols.CHARACTER_MAXIMUM_LENGTH,
/// COLUMNPROPERTY(object_id(Cols.TABLE_NAME), Cols.COLUMN_NAME, 'IsIdentity') AS IsIdentity,
/// ( SELECT COUNT(KCU.COLUMN_NAME)
/// FROM INFORMATION_SCHEMA.KEY_COLUMN_USAGE KCU
/// INNER JOIN INFORMATION_SCHEMA.TABLE_CO [rest of string was truncated]";.
/// </summary>
internal static string strTablesAndColumns {
get {
return ResourceManager.GetString("strTablesAndColumns", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to SELECT TABLE_NAME FROM [{0:G}].INFORMATION_SCHEMA.TABLES
///WHERE TABLE_TYPE = 'BASE TABLE'
///AND TABLE_NAME <> 'dtproperties'
///ORDER BY TABLE_NAME.
/// </summary>
internal static string strTablesList {
get {
return ResourceManager.GetString("strTablesList", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to using System;
///using System.Data;
///using System.Data.SqlClient;
///using System.ComponentModel;
///using NovinMedia.Data;
///
///namespace {0:G}
///{{
/// [DataObject(true)]
/// public class {1:G}
/// {{
///{2:G}
/// }}
///}}.
/// </summary>
internal static string WrapperClass_CSharp_Template {
get {
return ResourceManager.GetString("WrapperClass_CSharp_Template", resourceCulture);
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -