Reputation: 31
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.
Upvotes: 1
Views: 242
Reputation: 180060
In the SQLite C API, all queries are unbuffered.
Neither do the PHP SQLite3 functions implement buffering.
Upvotes: 1