oci_statement_type

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0)

oci_statement_type���� OCI ��������

˵��

oci_statement_type ( resource $statement ) : string

oci_statement_type() ������� statement �IJ�ѯ���ͣ���ֵΪ����֮һ��

  1. SELECT
  2. UPDATE
  3. DELETE
  4. INSERT
  5. CREATE
  6. DROP
  7. ALTER
  8. BEGIN
  9. DECLARE
  10. UNKNOWN

statement ������һ���� oci_parse() �����ص���Ч�� OCI ����ʶ����

Example #1 oci_statement_type() ����

<?php
    $conn 
oci_connect("scott""tiger");
    
$sql  "delete from emp where deptno = 10";

    
$stmt oci_parse($conn$sql);
    if (
oci_statement_type($stmt) == "DELETE") {
        die(
"You are not allowed to delete from this table<br />");
    }

    
oci_close($conn);
?>

oci_statement_type() �ڳ���ʱ���� FALSE��

Note:

�� PHP 5.0.0 ֮ǰ�İ汾����ʹ�� ocistatementtype() ������������ú�������Ȼ���ã�Ϊ���¼�����Ϊ oci_statement_type() �ı������������ѱ����������Ƽ�ʹ�á�