| 
 | sqlite_changesSQLiteDatabase::changesReturns the number of rows that were changed by the most recent SQL statement Description
   int sqlite_changes
    ( resource  $dbhandle)Object oriented style (method): 
   public int SQLiteDatabase::changes
    ( void
   ) 
   Returns the numbers of rows that were changed by the most recent SQL
   statement executed against the  Parameters
 
 Return ValuesReturns the number of changed rows. Examples
 Example #1 Procedural style 
<?php
 Example #2 Object oriented style 
<?phpSee Also
 
 |