downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

mssql_select_db> <mssql_result
Last updated: Fri, 20 Nov 2009

view this page in

mssql_rows_affected

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

mssql_rows_affectedReturns the number of records affected by the query

Description

int mssql_rows_affected ( resource $link_identifier )

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

Parameters

link_identifier

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

Return Values

Returns the number of records affected by last operation.

Examples

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)';
?>



add a note add a note User Contributed Notes
mssql_rows_affected
Pierre Gros
31-Jul-2007 12:19
i don't know why, but on my linux debian with php5 I get a nice :
Fatal error: Call to undefined function mssql_rows_affected()
when I try to use this function.
So if you have some problems, try to use this :

1st function (the one with mssql_rows_affected):
<?php
function update($query){
   
mssql_query($query,$ressource);
    return
mssql_rows_affected($ressource);
}
?>

new function (the one I use now) :
<?php
function update($query){
   
mssql_query($query,$ressource);

   
$rsRows = mssql_query("select @@rowcount as rows", $ressource);
   
$rows = mssql_fetch_assoc($rsRows);
    return
$rows['rows'];
}
?>
rowan dot collins at gmail dot com
31-May-2007 05:42
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_select_db> <mssql_result
Last updated: Fri, 20 Nov 2009
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites