PHP » GoLang |
login |
register |
about
|
GoLang sybase_affected_rows
request it (309)
GoLang replacement for PHP's sybase_affected_rows
[edit | history]
sybase_affected_rows(PHP 4, PHP 5) sybase_affected_rows — Gets number of affected rows in last query Warning
This function was REMOVED in PHP 7.0.0. Description
int sybase_affected_rows
([ resource
$link_identifier
] )sybase_affected_rows() returns the number of rows affected by the last INSERT, UPDATE or DELETE query on the server associated with the specified link identifier. This command is not effective for SELECT statements, only on statements which modify records. To retrieve the number of rows returned from a SELECT, use sybase_num_rows(). Parameters
Return ValuesReturns the number of affected rows, as an integer. Examples
Example #1 Delete-Query
<?php The above example will output: Records deleted: 10 |
more
Recently updated
more
Most requested
more
Last requests
|