execute method

  1. @override
Future<bool> execute({
  1. DB<DBConnection>? prepared,
  2. Map<String, dynamic>? properties,
})
override

Executes the command and returns true if successful.

Implementation

@override
Future<bool> execute({DB? prepared, Map<String, dynamic>? properties}) {
  return executeSQLs(sqls, properties: properties, prepared: prepared);
}