pg_cancel_query

(PHP 4 >= 4.2.0, PHP 5, PHP 7)

pg_cancel_query 비동기 질의 취소

설명

bool pg_cancel_query ( resource $connection )

pg_cancel_query()pg_send_query(), pg_send_query_params(), pg_send_execute()로 전송한 비동기 질의를 취소합니다. pg_query()로 실행한 질의는 취소할 수 없습니다.

인수

connection

PostgreSQL 데이터베이스 접속 자원.

반환값

성공 시 TRUE를, 실패 시 FALSE를 반환합니다.

예제

Example #1 pg_cancel_query() 예제

<?php
  $dbconn 
pg_connect("dbname=publisher") or die("Could not connect");

  if (!
pg_connection_busy($dbconn)) {
      
pg_send_query($dbconn"select * from authors; select count(*) from authors;");
  }
  
  
$res1 pg_get_result($dbconn);
  echo 
"First call to pg_get_result(): $res1\n";
  
$rows1 pg_num_rows($res1);
  echo 
"$res1 has $rows1 records\n\n";
  
  
// 현재 실행중인 질의를 취소합니다. 아직 실행중이라면
  // 두번째 질의입니다.
  
pg_cancel_query($dbconn);
?>

위 예제의 출력:

First call to pg_get_result(): Resource id #3
Resource id #3 has 3 records

참고

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top