views:

89

answers:

1

Are MySQLi queries unbuffered? If not, is there a way to do an unbuffered query, as with the non-MySQLi mysql_unbuffered_query()?

+3  A: 

mysqli_real_query() followed by mysqli_use_result()

MindStalker
`mysqli_use_result` appears to be just what I'm looking for. Thanks!
ceejayoz