Neyse OCI kullanarak PHP hazırlanan SQL ifadeleri önizleme için?

0 Cevap php

Eğer bir açıklama hazırlamak olup olmadığı gibi meraklı, onu bağlayan, ve sonra olarak takip oluşturulan SQL (oci_preview_sql function bir yer tutucu) önizleme:

// Glorious declaration of a non-specific query
$statment = oci_parse($handle, "SELECT x FROM y WHERE variable = :value");

// Bind up some variables
oci_bind_by_name($statement, ':value', $value);
...

// Location of interest
oci_preview_sql($statement); // ? is there some method like this?    

// Execute it
oci_execute($statement, OCI_DEFAULT);

0 Cevap