Hi,
<?php
$db1= new SQLiteDatabase(":memory:");
$db1->query("BEGIN;
CREATE TABLE tbl_memory (id integer primary key, id2);
insert into tbl_memory (id2) values (1);
insert into tbl_memory (id2) values (2);
insert into tbl_memory (id2) values (3);
");
echo $db1->changes(). "<br>";
echo "Last insert id is ".$db1->lastInsertRowid()."<br>";
$result = $db1->query("select * from tbl_memory");
echo "total " . $result->numRows();
unset($db1);
?>
Where can i find function list like numRows() ($result->numRows()) ?
Thanks