AsyncPoco.DatabaseTypes.OracleDatabaseType.EscapeSqlIdentifier C# (CSharp) Méthode

EscapeSqlIdentifier() public méthode

public EscapeSqlIdentifier ( string str ) : string
str string
Résultat string
		public override string EscapeSqlIdentifier(string str)
		{
			return string.Format("\"{0}\"", str.ToUpperInvariant());
		}