SQLite3 Unbuffered Query

231 Views Asked by At

I am converting some old code in PHP from SQLite2 to SQLite3.

One of the lines uses the following code:

$result = sqlite_unbuffered_query($this->db, $sqlite_query);

Is it possible to perform an unbuffered query in SQLite3? I can't seem to find anything on the SQL3 website.

1

There are 1 best solutions below

1
CL. On BEST ANSWER

In the SQLite C API, all queries are unbuffered.

Neither do the PHP SQLite3 functions implement buffering.