AsyncPoco.DatabaseTypes.OracleDatabaseType.EscapeSqlIdentifier C# (CSharp) Method

EscapeSqlIdentifier() public method

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