pg_get_result
非同期クエリの結果を取得する
&reftitle.description;
PgSql\Resultfalsepg_get_result
PgSql\Connectionconnection
pg_get_result は、
pg_send_query,
pg_send_query_params
あるいは pg_send_execute
で実行した非同期クエリから
PgSql\Result クラスのインスタンスを取得します。
pg_send_query およびその他の非同期クエリ関数は、
複数のクエリを PostgreSQL サーバーに送信することが可能です。クエリの結果を
ひとつずつ取得するには、pg_get_result を使用します。
&reftitle.parameters;
connection
&pgsql.parameter.connection;
&reftitle.returnvalues;
PgSql\Result クラスのインスタンスを返します。
結果がもうない場合に &false; を返します。
&reftitle.changelog;
&Version;
&Description;
&pgsql.changelog.return-result-object;
&pgsql.changelog.connection-object;
&reftitle.examples;
pg_get_result の例
]]>
&example.outputs;
&reftitle.seealso;
pg_send_query