• 首页
  • vue
  • TypeScript
  • JavaScript
  • scss
  • css3
  • html5
  • php
  • MySQL
  • redis
  • jQuery
  • mssql_rows_affected()

    (PHP 4 >= 4.0.4, PHP 5, PECL odbtp >= 1.1.1)

    Returns the number of records affected by the query

    Warning

    This function wasREMOVEDin PHP 7.0.0.

    Alternatives to this function include:

    • PDOStatement::rowCount()
    • sqlsrv_rows_affected()

    说明

    mssql_rows_affected(resource $link_identifier): int

    Returns the number of records affected by the last write query.

    参数

    $link_identifier

    A MS SQL link identifier, returned by mssql_connect() or mssql_pconnect().

    返回值

    Returns the number of records affected by last operation.

    范例

    Example #1 mssql_rows_affected() example

    <?php
    // Delete all rows in a table
    mssql_query('TRUNCATE TABLE [php].[dbo].[persons]');
    echo 'Deleted ' . mssql_rows_affected($link) . ' row(s)';
    ?>
    
    Note that, as the page says, this function expects an MSSQL *Link* resource, not a *result* resource. This is a bit counter-intuitive, and differs from, for instance, pg_affected_rows (though not, apparently, mysql_affected_rows).
    <?php
    $link = mssql_pconnect($db_host,$db_user,$db_pass);
    mssql_select_db($db_name, $link);
    $result = mssql_query('Select 1', $link);
    $rows = mssql_rows_affected($result); # ERROR!
    $rows = mssql_rows_affected($link); # Correct
    ?>
    

    上篇:mssql_result()

    下篇:mssql_select_db()