AsyncPoco.DatabaseTypes.OracleDatabaseType.EscapeSqlIdentifier C# (CSharp) 메소드

EscapeSqlIdentifier() 공개 메소드

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