BF2Statistics.Database.QueryBuilder.InsertQueryBuilder.BuildCommand C# (CSharp) Method

BuildCommand() public method

Builds the query string with the current SQL Statement, and returns the DbCommand to be executed. All WHERE paramenters are propery escaped, making this command SQL Injection safe.
public BuildCommand ( ) : DbCommand
return System.Data.Common.DbCommand
        public DbCommand BuildCommand() => BuildQuery(true) as DbCommand;