PHPAnalysis.Analysis.CFG.Taint.StringAnalysis.IsSQLRetrieveStmt C# (CSharp) Метод

IsSQLRetrieveStmt() публичный статический Метод

Checks whether the given string statement is an SQL retrieve statement Examples: SELECT
public static IsSQLRetrieveStmt ( string statement ) : bool
statement string
Результат bool
        public static bool IsSQLRetrieveStmt(string statement)
        {
            return statement.ToUpper().StartsWith("SELECT");
        }