|
PHP5中文手册
sqlite_changesSQLiteDatabase->changes(No version information available, might be only in CVS) SQLiteDatabase->changes — Returns the number of rows that were changed by the most recent SQL statement 说明
int sqlite_changes
( resource $dbhandle
)
Object oriented style (method): SQLiteDatabase
int changes
( void
)
Returns the numbers of rows that were changed by the most recent SQL statement executed against the dbhandle database handle. 参数
范例
Example#1 Procedural style
<?php
Example#2 Object oriented style
<?php |