vote up 1 vote down star

I'm writing an application in PHP 5. I want to delete some rows in a SQLite v2 database file. I'm doing something like this:

$sqliteConnection = new SQLiteDatabase('path/to/db');
$queryString = "DELETE FROM myTable WHERE status='not good'";
$result = $sqliteConnection->query($queryString);

how can I know how many rows were affected by this query? how many rows have I deleted?

flag

75% accept rate

2 Answers

vote up 3 vote down check

The PHP function sqlite_changes() does this for you.

Returns the numbers of rows that were changed by the most recent SQL statement executed against the dbhandle database handle.

Call it either in procedural-style:

echo 'Number of rows modified: ', sqlite_changes($sqliteConnection);

or in object-style:

echo 'Number of rows modified: ', $sqliteConnection->changes();
link|flag
I'm voting you up instead of Owen simply because you did a more thorough job of explaining. – Jeff Hubbard Nov 24 '08 at 7:14
vote up 0 vote down

I'd recommend using PDO and PDO:exec, which returns the number of affected rows. (Or rowCount if you use a prepared statement.)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.