简体   繁体   中英

php5 sqlite3 result and free

I am using php5 and now sqite3.

I don't know how free result. The following code

$query = "SELECT ...;";
$result = $GLOBALS['sqlite']->query($query);
$row = $result->fetchArray(SQLITE3_ASSOC);
$result->free();

ends with Error UNDEFINED METHOD . What am I doing wrong?

And finally, I want to ask if it is faster to call free() or never free the result?

正确的答案是$result->finalize();

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM