Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16784 программиста и 1776 роботов. Сейчас ищет 2051 программист ...
mssql_rows_affected - Returns the number of records affected by the query
Вернуться к: Mssql Функции
mssql_rows_affected
(PHP 4 >= 4.0.4, PHP 5, PECL odbtp >= 1.1.1)
mssql_rows_affected — Returns the number of records affected by the query
Внимание
This function was REMOVED in PHP 7.0.0.
Alternatives to this function include:
Описание
int mssql_rows_affected
( resource
$link_identifier
)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.
Примеры
Пример #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)';
?>
Вернуться к: Mssql Функции