1

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.

s952163
  • 6,276
  • 4
  • 23
  • 47
Breo
  • 31
  • 9

1 Answers1

1

In the SQLite C API, all queries are unbuffered.

Neither do the PHP SQLite3 functions implement buffering.

CL.
  • 173,858
  • 17
  • 217
  • 259
  • Tried it the same way I've been doing all my other queries and encountered no issues. Thanks for your help. – Breo Aug 17 '16 at 12:25