Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

When should I use closeCursor() for PDO statements?

Tags:

php

pdo

The PHP documentation on closeCursor() says that it

frees up the connection to the server so that other SQL statements may be issued, but leaves the statement in a state that enables it to be executed again.

When I have used the command though it doesn't seem to matter if it is there or not in between my query statements, and I am beginning to wonder if I need it at all.

Is it different to use it for database calls that don't return data vs. those that do?

like image 447
Rafie Avatar asked Oct 11 '12 16:10

Rafie


People also ask

What is closeCursor in PHP?

Description ¶ PDOStatement::closeCursor() frees up the connection to the server so that other SQL statements may be issued, but leaves the statement in a state that enables it to be executed again.

What PDO execute return?

From the PHP manual: PDO::exec() returns the number of rows that were modified or deleted by the SQL statement you issued.

What is PDO :: Param_str in PHP?

PDO::PARAM_STR. Represents SQL character data types. For an INOUT parameter, use the bitwise OR operator to append PDO::PARAM_INPUT_OUTPUT to the type of data being bound. Set the fourth parameter, length , to the maximum expected length of the output value.


1 Answers

This depends on the driver used. I think for mysql this will do nothing else than clear the result of the statement. After calling closeCursor() you cannot call fetch() anymore. However executing the statement again should not be a problem. Try to look at mysql_free_result(), it does a similar thing.

like image 195
mosch Avatar answered Oct 18 '22 13:10

mosch