sql/src/CommandResult.php

12 lines
194 B
PHP

<?php
namespace Amp\Sql;
interface CommandResult {
/**
* Returns the number of rows affected by the query.
*
* @return int
*/
public function affectedRows(): int;
}