Acme.PROJECTNAME.Install.SqlServers.GetDatabaseTableExtendedProperty C# (CSharp) Méthode

GetDatabaseTableExtendedProperty() static private méthode

static private GetDatabaseTableExtendedProperty ( string connectionString, string tableName, string propertyName ) : string
connectionString string
tableName string
propertyName string
Résultat string
		internal static string GetDatabaseTableExtendedProperty(string connectionString, string tableName, string propertyName)
		{
			string returnVal = string.Empty;
			returnVal = SelectExtendedProperty(connectionString, propertyName, string.Empty, tableName, string.Empty);
			return returnVal;
		}
		internal static string[] GetDatabaseTableExtendedPropertiesLike(string connectionString, string tableName, string likeStatement)