History log of /PHP-8.1/ext/pdo/tests/pdo_018.phpt (Results 26 – 35 of 35)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-5.1.0b3
# f5a09e87 12-Jul-2005 Wez Furlong

should always bind columns after execute.
There're probably more of these to fix.


Revision tags: php-4.4.0
# d3b653e9 09-Jul-2005 Wez Furlong

Added:

proto bool PDOStatement::closeCursor()
Closes the cursor, leaving the statement ready for re-execution.

The purpose of the function is to free up the connection to the se

Added:

proto bool PDOStatement::closeCursor()
Closes the cursor, leaving the statement ready for re-execution.

The purpose of the function is to free up the connection to the server so that
other queries may be issued, but leaving the statement in a state that it can
be re-executed.

This is implemented either as an optional driver specific method (allowing for
maximum efficiency), or as the generic PDO fallback if no driver specific
function is installed.

The PDO generic fallback is semantically the same as writing the following code
in your PHP script:

do {
while ($stmt->fetch())
;
if (!$stmt->nextRowset())
break;
} while (true);

show more ...


# 057e1973 08-Jul-2005 Wez Furlong

and as a result, need to update the expected data


# 8e30a807 08-Jul-2005 Wez Furlong

we declare the column as NOT NULL, so inserting NULL is not a good idea.


# 5156c7b3 07-Jul-2005 Ilia Alshanetsky

1st set of fixes to make tests work with MySQL

# Additional changes pending


# 721687e1 07-Jul-2005 Ilia Alshanetsky

Stop on the 1st skip.


# 3c5b9a6e 07-Jul-2005 Wez Furlong

skip if we can't connect (include reason in skip output)


# c80b4c74 07-Jul-2005 Wez Furlong

Need to state NOT NULL here, as DB2 won't allow the UNIQUE constraint without it.


# 30c916f2 06-Jul-2005 Wez Furlong

rename pdo_test.php to pdo_test.inc, add it, and update tests.


# 14dbb2df 06-Jul-2005 Wez Furlong

Add tests that can be redirected to with new test harness feature.


12