pg_get_result

PHP 4 >= 4.2.0, PHP 5, PHP 7, PHP 8
pg_get_result - Get asynchronous query result
Manual
Code Examples

pg_get_result( PgSql\Connection$connection ): PgSql\Result|false

pg_get_result gets an PgSql\Result instance from an asynchronous query executed by pg_send_query, pg_send_query_params or pg_send_execute.

pg_send_query and the other asynchronous query functions can send multiple queries to a PostgreSQL server and pg_get_result is used to get each query's results, one by one.

Parameters

connection

An PgSql\Connection instance.

Return Values

An PgSql\Result instance, or false if no more results are available.

Changelog

Version Description
8.1.0 Returns an PgSql\Result instance now; previously, a resource was returned.
8.1.0 The connection parameter expects an PgSql\Connection instance now; previously, a resource was expected.

Related Functions

Example of pg_get_result

Show all examples for pg_get_result

PHP Version:


Function pg_get_result:

PostgreSQL Functions

Most used PHP functions