public void Execute(string AStatement, SQLParameters AParameters) { CheckConnectionValid(); using (SQLCommand LCommand = CreateCommand()) { LCommand.Statement = AStatement; LCommand.Parameters.AddRange(AParameters); LCommand.Execute(); } }
public void Execute(string statement, SQLParameters parameters) { CheckConnectionValid(); using (SQLCommand command = CreateCommand(false)) { command.Statement = statement; command.Parameters.AddRange(parameters); command.Execute(); } }